Enum proc_macro::Spacing
[−]
[src]
pub enum Spacing { Alone, Joint, }
Whether an Op
is either followed immediately by another Op
or followed by whitespace.
Variants
Alone
e.g. +
is Alone
in + =
.
Joint
e.g. +
is Joint
in +=
.
Trait Implementations
impl Copy for Spacing
[src]
impl Clone for Spacing
[src]
fn clone(&self) -> Spacing
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more