[][src]Struct interledger_api::AccountDetails

pub struct AccountDetails {
    pub ilp_address: Address,
    pub username: Username,
    pub asset_code: String,
    pub asset_scale: u8,
    pub max_packet_amount: u64,
    pub min_balance: Option<i64>,
    pub http_endpoint: Option<String>,
    pub http_incoming_token: Option<String>,
    pub http_outgoing_token: Option<String>,
    pub btp_uri: Option<String>,
    pub btp_incoming_token: Option<String>,
    pub settle_threshold: Option<i64>,
    pub settle_to: Option<i64>,
    pub routing_relation: Option<String>,
    pub round_trip_time: Option<u32>,
    pub amount_per_minute_limit: Option<u64>,
    pub packets_per_minute_limit: Option<u32>,
    pub settlement_engine_url: Option<String>,
}

The Account type for the RedisStore.

Fields

ilp_address: Addressusername: Usernameasset_code: Stringasset_scale: u8max_packet_amount: u64min_balance: Option<i64>http_endpoint: Option<String>http_incoming_token: Option<String>http_outgoing_token: Option<String>btp_uri: Option<String>btp_incoming_token: Option<String>settle_threshold: Option<i64>settle_to: Option<i64>routing_relation: Option<String>round_trip_time: Option<u32>amount_per_minute_limit: Option<u64>packets_per_minute_limit: Option<u32>settlement_engine_url: Option<String>

Trait Implementations

impl Clone for AccountDetails[src]

impl Debug for AccountDetails[src]

impl<B: BufStream> Extract<B> for AccountDetails[src]

type Future = ExtractFuture<B>

The future representing the completion of the extraction logic.

impl Response for AccountDetails[src]

type Buf = <Self::Body as BufStream>::Item

Data chunk type.

type Body = Map<Bytes>

The HTTP response body type.

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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