Enum proc_macro::Spacing 1.29.0[−][src]
pub enum Spacing {
Alone,
Joint,
}Whether an Punct is followed immediately by another Punct or
followed by another token or whitespace.
Variants
e.g., + is Alone in + =, +ident or +().
e.g., + is Joint in += or '#.
Additionally, single quote ' can join with identifiers to form lifetimes 'ident.
Trait Implementations
impl Copy for Spacing[src]
impl Eq for Spacing[src]
impl StructuralEq for Spacing[src]
impl StructuralPartialEq for Spacing[src]
Auto Trait Implementations
impl RefUnwindSafe for Spacing
impl Send for Spacing
impl Sync for Spacing
impl Unpin for Spacing
impl UnwindSafe for Spacing
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into #41263)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more