pub struct NodeBlockchainFetchArguments {
pub arguments: Vec<WithMetaData<NodeVariableIdentifier>>,
}
Expand description
NodeBlockchainFetchArguments represents a blockchain fetch arguments node in the AST It contains a vector of arguments
Fields§
§arguments: Vec<WithMetaData<NodeVariableIdentifier>>
The arguments of the blockchain fetch
Trait Implementations§
Source§impl AstVisitor for NodeBlockchainFetchArguments
impl AstVisitor for NodeBlockchainFetchArguments
fn visit( &self, emitter: &mut dyn AstConverting, ) -> Result<TraversalResult, String>
Source§impl Clone for NodeBlockchainFetchArguments
impl Clone for NodeBlockchainFetchArguments
Source§fn clone(&self) -> NodeBlockchainFetchArguments
fn clone(&self) -> NodeBlockchainFetchArguments
Returns a copy 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 NodeBlockchainFetchArguments
impl Debug for NodeBlockchainFetchArguments
Source§impl PartialEq for NodeBlockchainFetchArguments
impl PartialEq for NodeBlockchainFetchArguments
Source§fn eq(&self, other: &NodeBlockchainFetchArguments) -> bool
fn eq(&self, other: &NodeBlockchainFetchArguments) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for NodeBlockchainFetchArguments
impl PartialOrd for NodeBlockchainFetchArguments
impl Eq for NodeBlockchainFetchArguments
impl StructuralPartialEq for NodeBlockchainFetchArguments
Auto Trait Implementations§
impl Freeze for NodeBlockchainFetchArguments
impl RefUnwindSafe for NodeBlockchainFetchArguments
impl Send for NodeBlockchainFetchArguments
impl Sync for NodeBlockchainFetchArguments
impl Unpin for NodeBlockchainFetchArguments
impl UnwindSafe for NodeBlockchainFetchArguments
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