Enum syn::RangeLimits
[−]
[src]
pub enum RangeLimits { HalfOpen(Dot2), Closed(DotDotEq), }
Limit types of a range, inclusive or exclusive.
This type is available if Syn is built with the "full"
feature.
Variants
HalfOpen(Dot2)
Inclusive at the beginning, exclusive at the end.
Closed(DotDotEq)
Inclusive at the beginning and end.
Trait Implementations
impl Synom for RangeLimits
[src]
impl Copy for RangeLimits
[src]
impl Clone for RangeLimits
[src]
fn clone(&self) -> RangeLimits
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more