pub enum SystemTfCall<'a> {
Args(Box<(SystemTfIdentifier<'a>, Option<(Metadata<'a>, ListOfArguments<'a>, Metadata<'a>)>)>),
Data(Box<(SystemTfIdentifier<'a>, Metadata<'a>, DataType<'a>, Option<(Metadata<'a>, Expression<'a>)>, Metadata<'a>)>),
Expressions(Box<(SystemTfIdentifier<'a>, Metadata<'a>, Expression<'a>, Vec<(Metadata<'a>, Option<Expression<'a>>)>, Option<(Metadata<'a>, Option<ClockingEvent<'a>>)>, Metadata<'a>)>),
}Variants§
Args(Box<(SystemTfIdentifier<'a>, Option<(Metadata<'a>, ListOfArguments<'a>, Metadata<'a>)>)>)
Data(Box<(SystemTfIdentifier<'a>, Metadata<'a>, DataType<'a>, Option<(Metadata<'a>, Expression<'a>)>, Metadata<'a>)>)
Expressions(Box<(SystemTfIdentifier<'a>, Metadata<'a>, Expression<'a>, Vec<(Metadata<'a>, Option<Expression<'a>>)>, Option<(Metadata<'a>, Option<ClockingEvent<'a>>)>, Metadata<'a>)>)
Implementations§
Source§impl<'a: 'b, 'b> SystemTfCall<'a>
impl<'a: 'b, 'b> SystemTfCall<'a>
Sourcepub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
pub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
Iterate across the SystemTfCall and its children
Trait Implementations§
Source§impl<'a> Clone for SystemTfCall<'a>
impl<'a> Clone for SystemTfCall<'a>
Source§fn clone(&self) -> SystemTfCall<'a>
fn clone(&self) -> SystemTfCall<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for SystemTfCall<'a>
impl<'a> Debug for SystemTfCall<'a>
Source§impl<'a: 'b, 'b> From<&'b SystemTfCall<'a>> for Node<'a, 'b>
impl<'a: 'b, 'b> From<&'b SystemTfCall<'a>> for Node<'a, 'b>
Source§fn from(value: &'b SystemTfCall<'a>) -> Self
fn from(value: &'b SystemTfCall<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a: 'b, 'b> IntoIterator for &'b SystemTfCall<'a>
impl<'a: 'b, 'b> IntoIterator for &'b SystemTfCall<'a>
Source§impl<'a: 'b, 'b> Nodes<'a, 'b> for SystemTfCall<'a>
impl<'a: 'b, 'b> Nodes<'a, 'b> for SystemTfCall<'a>
Source§impl<'a> PartialEq for SystemTfCall<'a>
impl<'a> PartialEq for SystemTfCall<'a>
impl<'a> StructuralPartialEq for SystemTfCall<'a>
Auto Trait Implementations§
impl<'a> Freeze for SystemTfCall<'a>
impl<'a> RefUnwindSafe for SystemTfCall<'a>
impl<'a> Send for SystemTfCall<'a>
impl<'a> Sync for SystemTfCall<'a>
impl<'a> Unpin for SystemTfCall<'a>
impl<'a> UnsafeUnpin for SystemTfCall<'a>
impl<'a> UnwindSafe for SystemTfCall<'a>
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