pub struct EnrichedParam {
pub name: String,
pub move_type: String,
pub is_signer: bool,
}Expand description
A parameter with both name and type information.
Fields§
§name: StringParameter name from Move source.
move_type: StringParameter type from ABI.
is_signer: boolWhether this is a signer parameter.
Trait Implementations§
Source§impl Clone for EnrichedParam
impl Clone for EnrichedParam
Source§fn clone(&self) -> EnrichedParam
fn clone(&self) -> EnrichedParam
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 moreAuto Trait Implementations§
impl Freeze for EnrichedParam
impl RefUnwindSafe for EnrichedParam
impl Send for EnrichedParam
impl Sync for EnrichedParam
impl Unpin for EnrichedParam
impl UnwindSafe for EnrichedParam
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