Struct mailchimp_api::types::Files
source · pub struct Files {
pub links: Vec<Links>,
pub created_at: Option<DateTime<Utc>>,
pub created_by: String,
pub folder_id: i64,
pub full_size_url: String,
pub height: i64,
pub id: i64,
pub name: String,
pub size: i64,
pub thumbnail_url: String,
pub type_: Option<FileType>,
pub width: i64,
}
Expand description
An individual file listed in the File Manager.
Fields
links: Vec<Links>
An individual file listed in the File Manager.
created_at: Option<DateTime<Utc>>
An individual file listed in the File Manager.
created_by: String
An individual file listed in the File Manager.
folder_id: i64
An individual file listed in the File Manager.
full_size_url: String
An individual file listed in the File Manager.
height: i64
An individual file listed in the File Manager.
id: i64
An individual file listed in the File Manager.
name: String
An individual file listed in the File Manager.
size: i64
An individual file listed in the File Manager.
thumbnail_url: String
An individual file listed in the File Manager.
type_: Option<FileType>
An individual file listed in the File Manager.
width: i64
An individual file listed in the File Manager.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Files
impl<'de> Deserialize<'de> for Files
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 Files
impl JsonSchema for Files
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 moreimpl StructuralPartialEq for Files
Auto Trait Implementations
impl RefUnwindSafe for Files
impl Send for Files
impl Sync for Files
impl Unpin for Files
impl UnwindSafe for Files
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