Enum syn::RangeLimits
source · [−]Expand description
Limit types of a range, inclusive or exclusive.
This type is available only 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
sourceimpl Parse for RangeLimits
impl Parse for RangeLimits
fn parse(input: ParseStream<'_>) -> Result<Self>
Auto Trait Implementations
impl RefUnwindSafe for RangeLimits
impl !Send for RangeLimits
impl !Sync for RangeLimits
impl Unpin for RangeLimits
impl UnwindSafe for RangeLimits
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more