Struct valkyrie_parser::DefineLambdaNode
source · pub struct DefineLambdaNode {
pub annotation_term: Vec<AnnotationTermNode>,
pub continuation: ContinuationNode,
pub function_middle: FunctionMiddleNode,
pub kw_lambda: KwLambdaNode,
pub span: Range<u32>,
}
Fields§
§annotation_term: Vec<AnnotationTermNode>
§continuation: ContinuationNode
§function_middle: FunctionMiddleNode
§kw_lambda: KwLambdaNode
§span: Range<u32>
Trait Implementations§
source§impl Clone for DefineLambdaNode
impl Clone for DefineLambdaNode
source§fn clone(&self) -> DefineLambdaNode
fn clone(&self) -> DefineLambdaNode
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 DefineLambdaNode
impl Debug for DefineLambdaNode
source§impl FromStr for DefineLambdaNode
impl FromStr for DefineLambdaNode
§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 DefineLambdaNode
impl Hash for DefineLambdaNode
source§impl YggdrasilNode for DefineLambdaNode
impl YggdrasilNode for DefineLambdaNode
Auto Trait Implementations§
impl RefUnwindSafe for DefineLambdaNode
impl Send for DefineLambdaNode
impl Sync for DefineLambdaNode
impl Unpin for DefineLambdaNode
impl UnwindSafe for DefineLambdaNode
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