pub enum Entry {
External(Box<ExternalWithdrawAddress>),
Internal(Box<InternalTransferAccount>),
}Variants§
External(Box<ExternalWithdrawAddress>)
Internal(Box<InternalTransferAccount>)
Trait Implementations§
Source§impl From<ExternalWithdrawAddress> for Entry
impl From<ExternalWithdrawAddress> for Entry
Source§fn from(v: ExternalWithdrawAddress) -> Self
fn from(v: ExternalWithdrawAddress) -> Self
Converts to this type from the input type.
Source§impl From<InternalTransferAccount> for Entry
impl From<InternalTransferAccount> for Entry
Source§fn from(v: InternalTransferAccount) -> Self
fn from(v: InternalTransferAccount) -> Self
Converts to this type from the input type.
impl Oneof for Entry
impl StructuralPartialEq for Entry
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnsafeUnpin for Entry
impl UnwindSafe for Entry
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