[][src]Struct etrade::alerts::Api

pub struct Api<T: Store> { /* fields omitted */ }

Implementations

impl<T> Api<T> where
    T: Store
[src]

pub fn new(session: Arc<Session<T>>) -> Self[src]

pub async fn list(
    &self,
    params: ListAlertsRequest,
    callbacks: impl CallbackProvider
) -> Result<AlertsResponse>
[src]

pub async fn details(
    &self,
    alert_id: &str,
    html: bool,
    callbacks: impl CallbackProvider
) -> Result<AlertDetailsResponse>
[src]

pub async fn delete(
    &self,
    alert_id: &str,
    callbacks: impl CallbackProvider
) -> Result<DeleteAlertsResponse>
[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for Api<T>[src]

impl<T> Send for Api<T> where
    T: Send + Sync
[src]

impl<T> Sync for Api<T> where
    T: Send + Sync
[src]

impl<T> Unpin for Api<T>[src]

impl<T> !UnwindSafe for Api<T>[src]

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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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>,