Struct ramp_api::Ramp [−][src]
pub struct Ramp { /* fields omitted */ }
Expand description
Entrypoint for interacting with the Ramp API.
Implementations
impl Ramp
[src]
impl Ramp
[src]pub async fn new<K, S>(client_id: K, client_secret: S) -> Self where
K: ToString,
S: ToString,
[src]
pub async fn new<K, S>(client_id: K, client_secret: S) -> Self where
K: ToString,
S: ToString,
[src]Create a new Ramp client struct. It takes a type that can convert into
an &str (String
or Vec<u8>
for example). As long as the function is
given a valid API client ID and secret your requests will work.
pub async fn new_from_env() -> Self
[src]
pub async fn new_from_env() -> Self
[src]Create a new Ramp client struct from environment variables. It
takes a type that can convert into
an &str (String
or Vec<u8>
for example). As long as the function is
given a valid API Key your requests will work.
pub async fn get_transactions(&self) -> Result<Vec<Transaction>, APIError>
[src]
pub async fn get_transactions(&self) -> Result<Vec<Transaction>, APIError>
[src]Get all the transactions in the account.
pub async fn create_physical_card(&self) -> Result<Card, APIError>
[src]
pub async fn create_physical_card(&self) -> Result<Card, APIError>
[src]Create a physical card.
Auto Trait Implementations
impl !RefUnwindSafe for Ramp
impl Send for Ramp
impl Sync for Ramp
impl Unpin for Ramp
impl !UnwindSafe for Ramp
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]