Struct mailchimp_api::types::FileManager
source · pub struct FileManager {
pub links: Vec<Links>,
pub files: Vec<Files>,
pub total_file_size: f64,
pub total_items: i64,
}Expand description
A list of available images and files stored in the File Manager for the account.
Fields
links: Vec<Links>A list of available images and files stored in the File Manager for the account.
files: Vec<Files>A list of available images and files stored in the File Manager for the account.
total_file_size: f64A list of available images and files stored in the File Manager for the account.
total_items: i64A list of available images and files stored in the File Manager for the account.
Trait Implementations
sourceimpl Clone for FileManager
impl Clone for FileManager
sourcefn clone(&self) -> FileManager
fn clone(&self) -> FileManager
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for FileManager
impl Debug for FileManager
sourceimpl<'de> Deserialize<'de> for FileManager
impl<'de> Deserialize<'de> for FileManager
sourcefn 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
sourceimpl JsonSchema for FileManager
impl JsonSchema for FileManager
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresourceimpl PartialEq<FileManager> for FileManager
impl PartialEq<FileManager> for FileManager
sourcefn eq(&self, other: &FileManager) -> bool
fn eq(&self, other: &FileManager) -> bool
sourceimpl Serialize for FileManager
impl Serialize for FileManager
impl StructuralPartialEq for FileManager
Auto Trait Implementations
impl RefUnwindSafe for FileManager
impl Send for FileManager
impl Sync for FileManager
impl Unpin for FileManager
impl UnwindSafe for FileManager
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more