[][src]Struct xpring::Ilp

pub struct Ilp { /* fields omitted */ }

The Ilp struct will allow you to access all ILP methods

Methods

impl Ilp[src]

pub fn new(
    ilpclient_url: &'static str,
    account_id: &'static str,
    token: &str
) -> Result<Ilp, Error>
[src]

pub fn get_balance(&mut self) -> Result<IlpBalanceResponse, Error>[src]

Returns an account balance.

Remarks

Returns a IlpBalanceResponse with the transaction status wrapped in a Result (Result<IlpBalanceResponse, anyhow::Error>).

Example

let balance = ilp.get_balance()?;

//  IlpBalanceResponse {
//      account_id: "sdk_account1",
//      asset_code: "XRP",  
//      asset_scale: 9,
//      net_balance: -10491,
//      prepaid_amount: 0,
//      clearing_balance: -10491,
//  }

pub fn send_to<S: Into<String>>(
    &mut self,
    destination_payment_pointer: S,
    amount: u64,
    timeout_seconds: u64
) -> Result<IlpSendResponse, Error>
[src]

Sends an ILP payment to an account.

Remarks

Returns a IlpSendResponse with the transaction status wrapped in a Result (Result<IlpSendResponse, anyhow::Error>).

Example

let payment = ilp.send_to(
        "$money.ilpv4.dev/sdk_account2",
        13,
        10
    )?;

//  IlpBalanceResponse {
//      account_id: "sdk_account1",
//      asset_code: "XRP",  
//      asset_scale: 9,
//      net_balance: -10491,
//      prepaid_amount: 0,
//      clearing_balance: -10491,
//  }

Auto Trait Implementations

impl !RefUnwindSafe for Ilp

impl Send for Ilp

impl Sync for Ilp

impl Unpin for Ilp

impl !UnwindSafe for Ilp

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]