[][src]Struct interledger_service::OutgoingRequest

pub struct OutgoingRequest<A: Account> {
    pub from: A,
    pub to: A,
    pub original_amount: u64,
    pub prepare: Prepare,
}

A struct representing an ILP Prepare packet with the incoming and outgoing accounts set.

Fields

from: Ato: Aoriginal_amount: u64prepare: Prepare

Trait Implementations

impl<A: Clone + Account> Clone for OutgoingRequest<A>[src]

impl<A> Debug for OutgoingRequest<A> where
    A: Account
[src]

Auto Trait Implementations

impl<A> Send for OutgoingRequest<A>

impl<A> Sync for OutgoingRequest<A> where
    A: Sync

impl<A> Unpin for OutgoingRequest<A> where
    A: Unpin

impl<A> UnwindSafe for OutgoingRequest<A> where
    A: UnwindSafe

impl<A> RefUnwindSafe for OutgoingRequest<A> where
    A: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]