pub enum ExternTfDeclaration {
    Method(Box<ExternTfDeclarationMethod>),
    Task(Box<ExternTfDeclarationTask>),
}Variants§
Method(Box<ExternTfDeclarationMethod>)
Task(Box<ExternTfDeclarationTask>)
Trait Implementations§
Source§impl Clone for ExternTfDeclaration
 
impl Clone for ExternTfDeclaration
Source§fn clone(&self) -> ExternTfDeclaration
 
fn clone(&self) -> ExternTfDeclaration
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 ExternTfDeclaration
 
impl Debug for ExternTfDeclaration
Source§impl<'a> From<&'a ExternTfDeclaration> for RefNode<'a>
 
impl<'a> From<&'a ExternTfDeclaration> for RefNode<'a>
Source§fn from(x: &'a ExternTfDeclaration) -> RefNode<'a>
 
fn from(x: &'a ExternTfDeclaration) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a ExternTfDeclaration> for RefNodes<'a>
 
impl<'a> From<&'a ExternTfDeclaration> for RefNodes<'a>
Source§fn from(x: &'a ExternTfDeclaration) -> RefNodes<'a>
 
fn from(x: &'a ExternTfDeclaration) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<ExternTfDeclaration> for AnyNode
 
impl From<ExternTfDeclaration> for AnyNode
Source§fn from(x: ExternTfDeclaration) -> AnyNode
 
fn from(x: ExternTfDeclaration) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a ExternTfDeclaration
 
impl<'a> IntoIterator for &'a ExternTfDeclaration
Source§impl PartialEq for ExternTfDeclaration
 
impl PartialEq for ExternTfDeclaration
Source§impl<'a> TryFrom<&'a ExternTfDeclaration> for Locate
 
impl<'a> TryFrom<&'a ExternTfDeclaration> for Locate
Source§impl TryFrom<AnyNode> for ExternTfDeclaration
 
impl TryFrom<AnyNode> for ExternTfDeclaration
Source§impl TryFrom<ExternTfDeclaration> for Locate
 
impl TryFrom<ExternTfDeclaration> for Locate
impl StructuralPartialEq for ExternTfDeclaration
Auto Trait Implementations§
impl Freeze for ExternTfDeclaration
impl RefUnwindSafe for ExternTfDeclaration
impl Send for ExternTfDeclaration
impl Sync for ExternTfDeclaration
impl Unpin for ExternTfDeclaration
impl UnwindSafe for ExternTfDeclaration
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