pub enum ExternTfDeclaration {
Method(Box<ExternTfDeclarationMethod>),
Task(Box<ExternTfDeclarationTask>),
}Variants
Method(Box<ExternTfDeclarationMethod>)
Task(Box<ExternTfDeclarationTask>)
Trait Implementations
sourceimpl Clone for ExternTfDeclaration
impl Clone for ExternTfDeclaration
sourcefn clone(&self) -> ExternTfDeclaration
fn clone(&self) -> ExternTfDeclaration
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 ExternTfDeclaration
impl Debug for ExternTfDeclaration
sourceimpl<'a> From<&'a ExternTfDeclaration> for RefNodes<'a>
impl<'a> From<&'a ExternTfDeclaration> for RefNodes<'a>
sourcefn from(x: &'a ExternTfDeclaration) -> Self
fn from(x: &'a ExternTfDeclaration) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<&'a ExternTfDeclaration> for RefNode<'a>
impl<'a> From<&'a ExternTfDeclaration> for RefNode<'a>
sourcefn from(x: &'a ExternTfDeclaration) -> Self
fn from(x: &'a ExternTfDeclaration) -> Self
Converts to this type from the input type.
sourceimpl From<ExternTfDeclaration> for AnyNode
impl From<ExternTfDeclaration> for AnyNode
sourcefn from(x: ExternTfDeclaration) -> Self
fn from(x: ExternTfDeclaration) -> Self
Converts to this type from the input type.
sourceimpl<'a> IntoIterator for &'a ExternTfDeclaration
impl<'a> IntoIterator for &'a ExternTfDeclaration
sourceimpl PartialEq<ExternTfDeclaration> for ExternTfDeclaration
impl PartialEq<ExternTfDeclaration> for ExternTfDeclaration
sourcefn eq(&self, other: &ExternTfDeclaration) -> bool
fn eq(&self, other: &ExternTfDeclaration) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ExternTfDeclaration) -> bool
fn ne(&self, other: &ExternTfDeclaration) -> bool
This method tests for !=.
sourceimpl<'a> TryFrom<&'a ExternTfDeclaration> for Locate
impl<'a> TryFrom<&'a ExternTfDeclaration> for Locate
sourceimpl TryFrom<AnyNode> for ExternTfDeclaration
impl TryFrom<AnyNode> for ExternTfDeclaration
sourceimpl TryFrom<ExternTfDeclaration> for Locate
impl TryFrom<ExternTfDeclaration> for Locate
impl StructuralPartialEq for ExternTfDeclaration
Auto Trait Implementations
impl RefUnwindSafe for ExternTfDeclaration
impl Send for ExternTfDeclaration
impl Sync for ExternTfDeclaration
impl Unpin for ExternTfDeclaration
impl UnwindSafe for ExternTfDeclaration
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