Enum fuel_tx::CheckedMetadata
source · pub enum CheckedMetadata {
Script(<Script as IntoChecked>::Metadata),
Create(<Create as IntoChecked>::Metadata),
Mint(<Mint as IntoChecked>::Metadata),
}
Expand description
The IntoChecked
metadata for CheckedTransaction
.
Variants
Script(<Script as IntoChecked>::Metadata)
Create(<Create as IntoChecked>::Metadata)
Mint(<Mint as IntoChecked>::Metadata)
Trait Implementations
sourceimpl Clone for CheckedMetadata
impl Clone for CheckedMetadata
sourcefn clone(&self) -> CheckedMetadata
fn clone(&self) -> CheckedMetadata
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 moresourceimpl Debug for CheckedMetadata
impl Debug for CheckedMetadata
sourceimpl From<<Create as IntoChecked>::Metadata> for CheckedMetadata
impl From<<Create as IntoChecked>::Metadata> for CheckedMetadata
sourcefn from(metadata: <Create as IntoChecked>::Metadata) -> Self
fn from(metadata: <Create as IntoChecked>::Metadata) -> Self
Converts to this type from the input type.
sourceimpl From<<Mint as IntoChecked>::Metadata> for CheckedMetadata
impl From<<Mint as IntoChecked>::Metadata> for CheckedMetadata
sourcefn from(metadata: <Mint as IntoChecked>::Metadata) -> Self
fn from(metadata: <Mint as IntoChecked>::Metadata) -> Self
Converts to this type from the input type.
sourceimpl From<<Script as IntoChecked>::Metadata> for CheckedMetadata
impl From<<Script as IntoChecked>::Metadata> for CheckedMetadata
sourcefn from(metadata: <Script as IntoChecked>::Metadata) -> Self
fn from(metadata: <Script as IntoChecked>::Metadata) -> Self
Converts to this type from the input type.
sourceimpl Hash for CheckedMetadata
impl Hash for CheckedMetadata
sourceimpl PartialEq<CheckedMetadata> for CheckedMetadata
impl PartialEq<CheckedMetadata> for CheckedMetadata
sourcefn eq(&self, other: &CheckedMetadata) -> bool
fn eq(&self, other: &CheckedMetadata) -> bool
impl Eq for CheckedMetadata
impl StructuralEq for CheckedMetadata
impl StructuralPartialEq for CheckedMetadata
Auto Trait Implementations
impl RefUnwindSafe for CheckedMetadata
impl Send for CheckedMetadata
impl Sync for CheckedMetadata
impl Unpin for CheckedMetadata
impl UnwindSafe for CheckedMetadata
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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