pub enum PatternVariableOrWildcard {
Variable(Variable),
Wildcard(Node),
}Variants§
Trait Implementations§
Source§impl Clone for PatternVariableOrWildcard
impl Clone for PatternVariableOrWildcard
Source§fn clone(&self) -> PatternVariableOrWildcard
fn clone(&self) -> PatternVariableOrWildcard
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 moreAuto Trait Implementations§
impl Freeze for PatternVariableOrWildcard
impl RefUnwindSafe for PatternVariableOrWildcard
impl Send for PatternVariableOrWildcard
impl Sync for PatternVariableOrWildcard
impl Unpin for PatternVariableOrWildcard
impl UnwindSafe for PatternVariableOrWildcard
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