pub struct RangePattern<'tree> {
pub span: Span,
pub left: Option<RangePatternLeft<'tree>>,
pub right: Option<RangePatternRight<'tree>>,
}Fields§
§span: Span§left: Option<RangePatternLeft<'tree>>§right: Option<RangePatternRight<'tree>>Trait Implementations§
Source§impl<'tree> Clone for RangePattern<'tree>
impl<'tree> Clone for RangePattern<'tree>
Source§fn clone(&self) -> RangePattern<'tree>
fn clone(&self) -> RangePattern<'tree>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'tree> Debug for RangePattern<'tree>
impl<'tree> Debug for RangePattern<'tree>
Source§impl<'tree> FromNode<'tree> for RangePattern<'tree>
impl<'tree> FromNode<'tree> for RangePattern<'tree>
Source§impl<'tree> PartialEq for RangePattern<'tree>
impl<'tree> PartialEq for RangePattern<'tree>
Source§impl Spanned for RangePattern<'_>
impl Spanned for RangePattern<'_>
impl<'tree> Eq for RangePattern<'tree>
impl<'tree> StructuralPartialEq for RangePattern<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for RangePattern<'tree>
impl<'tree> RefUnwindSafe for RangePattern<'tree>
impl<'tree> Send for RangePattern<'tree>
impl<'tree> Sync for RangePattern<'tree>
impl<'tree> Unpin for RangePattern<'tree>
impl<'tree> UnsafeUnpin for RangePattern<'tree>
impl<'tree> UnwindSafe for RangePattern<'tree>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more