pub enum StandardPatternNode {
TuplePattern(TuplePatternNode),
}
Variants§
TuplePattern(TuplePatternNode)
Trait Implementations§
source§impl Clone for StandardPatternNode
impl Clone for StandardPatternNode
source§fn clone(&self) -> StandardPatternNode
fn clone(&self) -> StandardPatternNode
Returns a copy 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 Debug for StandardPatternNode
impl Debug for StandardPatternNode
source§impl FromStr for StandardPatternNode
impl FromStr for StandardPatternNode
§type Err = YggdrasilError<ValkyrieRule>
type Err = YggdrasilError<ValkyrieRule>
The associated error which can be returned from parsing.
source§fn from_str(input: &str) -> Result<Self, YggdrasilError<ValkyrieRule>>
fn from_str(input: &str) -> Result<Self, YggdrasilError<ValkyrieRule>>
Parses a string
s
to return a value of this type. Read moresource§impl Hash for StandardPatternNode
impl Hash for StandardPatternNode
source§impl YggdrasilNode for StandardPatternNode
impl YggdrasilNode for StandardPatternNode
Auto Trait Implementations§
impl RefUnwindSafe for StandardPatternNode
impl Send for StandardPatternNode
impl Sync for StandardPatternNode
impl Unpin for StandardPatternNode
impl UnwindSafe for StandardPatternNode
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