pub enum Asset {
ASSET_TYPE_NATIVE,
ASSET_TYPE_CREDIT_ALPHANUM4(AssetAlphanum4),
ASSET_TYPE_CREDIT_ALPHANUM12(AssetAlphanum12),
}
Variants§
ASSET_TYPE_NATIVE
ASSET_TYPE_CREDIT_ALPHANUM4(AssetAlphanum4)
ASSET_TYPE_CREDIT_ALPHANUM12(AssetAlphanum12)
Trait Implementations§
impl Copy for Asset
impl Eq for Asset
impl StructuralPartialEq for Asset
Auto Trait Implementations§
impl Freeze for Asset
impl RefUnwindSafe for Asset
impl Send for Asset
impl Sync for Asset
impl Unpin for Asset
impl UnwindSafe for Asset
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