pub struct NodeContractTypeArguments {
pub type_arguments: Vec<WithMetaData<NodeTypeArgument>>,
}
Expand description
NodeContractTypeArguments represents a contract type arguments node in the AST It contains a vector of type arguments
Fields§
§type_arguments: Vec<WithMetaData<NodeTypeArgument>>
The type arguments of the contract
Trait Implementations§
Source§impl AstVisitor for NodeContractTypeArguments
impl AstVisitor for NodeContractTypeArguments
fn visit( &self, emitter: &mut dyn AstConverting, ) -> Result<TraversalResult, String>
Source§impl Clone for NodeContractTypeArguments
impl Clone for NodeContractTypeArguments
Source§fn clone(&self) -> NodeContractTypeArguments
fn clone(&self) -> NodeContractTypeArguments
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 NodeContractTypeArguments
impl Debug for NodeContractTypeArguments
Source§impl PartialOrd for NodeContractTypeArguments
impl PartialOrd for NodeContractTypeArguments
impl Eq for NodeContractTypeArguments
impl StructuralPartialEq for NodeContractTypeArguments
Auto Trait Implementations§
impl Freeze for NodeContractTypeArguments
impl RefUnwindSafe for NodeContractTypeArguments
impl Send for NodeContractTypeArguments
impl Sync for NodeContractTypeArguments
impl Unpin for NodeContractTypeArguments
impl UnwindSafe for NodeContractTypeArguments
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