pub struct AuthorizedAppsType {
pub apps: Vec<AuthorizedAppType>,
pub total_items: u64,
pub _links: Vec<LinkType>,
}
Expand description
Authorized Apps Type
Endpoint GET /authorized-apps
Fields§
§apps: Vec<AuthorizedAppType>
An array of objects, each representing an authorized application.
total_items: u64
Desc: The total number of items matching the query regardless of pagination.
_links: Vec<LinkType>
Desc: A list of link types and descriptions for the API schema documents.
Trait Implementations§
Source§impl Clone for AuthorizedAppsType
impl Clone for AuthorizedAppsType
Source§fn clone(&self) -> AuthorizedAppsType
fn clone(&self) -> AuthorizedAppsType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AuthorizedAppsType
impl Debug for AuthorizedAppsType
Source§impl Default for AuthorizedAppsType
impl Default for AuthorizedAppsType
Source§impl<'de> Deserialize<'de> for AuthorizedAppsType
impl<'de> Deserialize<'de> for AuthorizedAppsType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl MailchimpCollection<AuthorizedAppType> for AuthorizedAppsType
impl MailchimpCollection<AuthorizedAppType> for AuthorizedAppsType
Source§fn get_total_items(&self) -> u64
fn get_total_items(&self) -> u64
Total Items
Source§fn get_values(&self) -> Vec<AuthorizedAppType>
fn get_values(&self) -> Vec<AuthorizedAppType>
Data
Auto Trait Implementations§
impl Freeze for AuthorizedAppsType
impl RefUnwindSafe for AuthorizedAppsType
impl !Send for AuthorizedAppsType
impl !Sync for AuthorizedAppsType
impl Unpin for AuthorizedAppsType
impl UnwindSafe for AuthorizedAppsType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more