Struct move_command_line_common::types::ParsedStructType
source · [−]pub struct ParsedStructType {
pub address: ParsedAddress,
pub module: String,
pub name: String,
pub type_args: Vec<ParsedType>,
}
Fields
address: ParsedAddress
module: String
name: String
type_args: Vec<ParsedType>
Implementations
sourceimpl ParsedStructType
impl ParsedStructType
pub fn parse(s: &str) -> Result<ParsedStructType>
sourceimpl ParsedStructType
impl ParsedStructType
pub fn into_struct_tag(
self,
mapping: &impl Fn(&str) -> Option<AccountAddress>
) -> Result<StructTag>
Trait Implementations
sourceimpl Clone for ParsedStructType
impl Clone for ParsedStructType
sourcefn clone(&self) -> ParsedStructType
fn clone(&self) -> ParsedStructType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ParsedStructType
impl Debug for ParsedStructType
sourceimpl PartialEq<ParsedStructType> for ParsedStructType
impl PartialEq<ParsedStructType> for ParsedStructType
sourcefn eq(&self, other: &ParsedStructType) -> bool
fn eq(&self, other: &ParsedStructType) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ParsedStructType) -> bool
fn ne(&self, other: &ParsedStructType) -> bool
This method tests for !=
.
impl Eq for ParsedStructType
impl StructuralEq for ParsedStructType
impl StructuralPartialEq for ParsedStructType
Auto Trait Implementations
impl RefUnwindSafe for ParsedStructType
impl Send for ParsedStructType
impl Sync for ParsedStructType
impl Unpin for ParsedStructType
impl UnwindSafe for ParsedStructType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more