pub struct TaskDeclaration {
    pub nodes: (Keyword, Option<Lifetime>, TaskBodyDeclaration),
}Fields§
§nodes: (Keyword, Option<Lifetime>, TaskBodyDeclaration)Trait Implementations§
Source§impl Clone for TaskDeclaration
 
impl Clone for TaskDeclaration
Source§fn clone(&self) -> TaskDeclaration
 
fn clone(&self) -> TaskDeclaration
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 Debug for TaskDeclaration
 
impl Debug for TaskDeclaration
Source§impl<'a> From<&'a TaskDeclaration> for RefNode<'a>
 
impl<'a> From<&'a TaskDeclaration> for RefNode<'a>
Source§fn from(x: &'a TaskDeclaration) -> RefNode<'a>
 
fn from(x: &'a TaskDeclaration) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a TaskDeclaration> for RefNodes<'a>
 
impl<'a> From<&'a TaskDeclaration> for RefNodes<'a>
Source§fn from(x: &'a TaskDeclaration) -> RefNodes<'a>
 
fn from(x: &'a TaskDeclaration) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<TaskDeclaration> for AnyNode
 
impl From<TaskDeclaration> for AnyNode
Source§fn from(x: TaskDeclaration) -> AnyNode
 
fn from(x: TaskDeclaration) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a TaskDeclaration
 
impl<'a> IntoIterator for &'a TaskDeclaration
Source§impl PartialEq for TaskDeclaration
 
impl PartialEq for TaskDeclaration
Source§impl<'a> TryFrom<&'a TaskDeclaration> for Locate
 
impl<'a> TryFrom<&'a TaskDeclaration> for Locate
Source§impl TryFrom<AnyNode> for TaskDeclaration
 
impl TryFrom<AnyNode> for TaskDeclaration
Source§impl TryFrom<TaskDeclaration> for Locate
 
impl TryFrom<TaskDeclaration> for Locate
impl StructuralPartialEq for TaskDeclaration
Auto Trait Implementations§
impl Freeze for TaskDeclaration
impl RefUnwindSafe for TaskDeclaration
impl Send for TaskDeclaration
impl Sync for TaskDeclaration
impl Unpin for TaskDeclaration
impl UnwindSafe for TaskDeclaration
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