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 Clone for RangeLimits
impl Clone for RangeLimits
sourceimpl Debug for RangeLimits
impl Debug for RangeLimits
sourceimpl Hash for RangeLimits
impl Hash for RangeLimits
sourceimpl Parse for RangeLimits
impl Parse for RangeLimits
fn parse(input: ParseStream<'_>) -> Result<Self>
sourceimpl PartialEq<RangeLimits> for RangeLimits
impl PartialEq<RangeLimits> for RangeLimits
impl Copy for RangeLimits
impl Eq for RangeLimits
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more