pub enum TaskBodyDeclaration {
WithoutPort(Box<TaskBodyDeclarationWithoutPort>),
WithPort(Box<TaskBodyDeclarationWithPort>),
}Variants
WithoutPort(Box<TaskBodyDeclarationWithoutPort>)
WithPort(Box<TaskBodyDeclarationWithPort>)
Trait Implementations
sourceimpl Clone for TaskBodyDeclaration
impl Clone for TaskBodyDeclaration
sourcefn clone(&self) -> TaskBodyDeclaration
fn clone(&self) -> TaskBodyDeclaration
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for TaskBodyDeclaration
impl Debug for TaskBodyDeclaration
sourceimpl<'a> From<&'a TaskBodyDeclaration> for RefNode<'a>
impl<'a> From<&'a TaskBodyDeclaration> for RefNode<'a>
sourcefn from(x: &'a TaskBodyDeclaration) -> Self
fn from(x: &'a TaskBodyDeclaration) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<&'a TaskBodyDeclaration> for RefNodes<'a>
impl<'a> From<&'a TaskBodyDeclaration> for RefNodes<'a>
sourcefn from(x: &'a TaskBodyDeclaration) -> Self
fn from(x: &'a TaskBodyDeclaration) -> Self
Converts to this type from the input type.
sourceimpl From<TaskBodyDeclaration> for AnyNode
impl From<TaskBodyDeclaration> for AnyNode
sourcefn from(x: TaskBodyDeclaration) -> Self
fn from(x: TaskBodyDeclaration) -> Self
Converts to this type from the input type.
sourceimpl<'a> IntoIterator for &'a TaskBodyDeclaration
impl<'a> IntoIterator for &'a TaskBodyDeclaration
sourceimpl PartialEq<TaskBodyDeclaration> for TaskBodyDeclaration
impl PartialEq<TaskBodyDeclaration> for TaskBodyDeclaration
sourcefn eq(&self, other: &TaskBodyDeclaration) -> bool
fn eq(&self, other: &TaskBodyDeclaration) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &TaskBodyDeclaration) -> bool
fn ne(&self, other: &TaskBodyDeclaration) -> bool
This method tests for !=.
sourceimpl<'a> TryFrom<&'a TaskBodyDeclaration> for Locate
impl<'a> TryFrom<&'a TaskBodyDeclaration> for Locate
sourceimpl TryFrom<AnyNode> for TaskBodyDeclaration
impl TryFrom<AnyNode> for TaskBodyDeclaration
sourceimpl TryFrom<TaskBodyDeclaration> for Locate
impl TryFrom<TaskBodyDeclaration> for Locate
impl StructuralPartialEq for TaskBodyDeclaration
Auto Trait Implementations
impl RefUnwindSafe for TaskBodyDeclaration
impl Send for TaskBodyDeclaration
impl Sync for TaskBodyDeclaration
impl Unpin for TaskBodyDeclaration
impl UnwindSafe for TaskBodyDeclaration
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more