[][src]Struct mailchimp::ApiRoot

pub struct ApiRoot { /* fields omitted */ }

Implement Mailchimp API Root Endpoint

The API root resource links to all other resources available in the API. Calling the root directory also returns details about the Mailchimp user account.

Methods

impl ApiRoot[src]

pub fn new(api: MailchimpApi) -> Self[src]

mentos: api: MailchimpApi

pub fn get_info(
    &self,
    filters: HashMap<String, String>
) -> Result<ApiRootType, MailchimpErrorType>
[src]

Devuelve detalles de la cuenta de usuario, asi como los links a los recursos asociados

Argumentos: filters: Filtros que requieras aplicar a la hora de obtener las aplicaciones fields: Una lista de campos separados por comas para devolver. Parámetros de referencia de subobjetos con notación de puntos. exclude_fields: Una lista de campos separados por comas para excluir. Parámetros de referencia de subobjetos con notación de puntos.

Trait Implementations

impl Clone for ApiRoot[src]

impl Debug for ApiRoot[src]

Auto Trait Implementations

impl RefUnwindSafe for ApiRoot

impl Send for ApiRoot

impl Sync for ApiRoot

impl Unpin for ApiRoot

impl UnwindSafe for ApiRoot

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, U> Into<U> for T where
    U: From<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.