pub struct TransferStep {
pub from: AccountId,
pub to: AccountId,
pub amount: u64,
pub metadata: Vec<Any>,
}
Fields§
§from: AccountId
§to: AccountId
§amount: u64
§metadata: Vec<Any>
Trait Implementations§
Source§impl Clone for TransferStep
impl Clone for TransferStep
Source§fn clone(&self) -> TransferStep
fn clone(&self) -> TransferStep
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 moreSource§impl Debug for TransferStep
impl Debug for TransferStep
Source§impl Display for TransferStep
impl Display for TransferStep
Source§impl MetadataExt for TransferStep
impl MetadataExt for TransferStep
Source§impl Serialize for TransferStep
impl Serialize for TransferStep
Source§impl TryFrom<TransferStep> for TransferStep
impl TryFrom<TransferStep> for TransferStep
Auto Trait Implementations§
impl Freeze for TransferStep
impl RefUnwindSafe for TransferStep
impl Send for TransferStep
impl Sync for TransferStep
impl Unpin for TransferStep
impl UnwindSafe for TransferStep
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
Source§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
type Err = Infallible
fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<Item> PrettyPrint for Itemwhere
Item: Serialize,
impl<Item> PrettyPrint for Itemwhere
Item: Serialize,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.