pub struct AboutMaxUploadSizes {
pub size: Option<i64>,
pub type_: Option<String>,
}Expand description
List of max upload sizes for each file type. The most specific type takes precedence.
This type is not used in any activity, and only used as part of another schema.
Fields§
§size: Option<i64>The max upload size for this type.
type_: Option<String>The file type.
Trait Implementations§
Source§impl Clone for AboutMaxUploadSizes
impl Clone for AboutMaxUploadSizes
Source§fn clone(&self) -> AboutMaxUploadSizes
fn clone(&self) -> AboutMaxUploadSizes
Returns a duplicate 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 AboutMaxUploadSizes
impl Debug for AboutMaxUploadSizes
Source§impl Default for AboutMaxUploadSizes
impl Default for AboutMaxUploadSizes
Source§fn default() -> AboutMaxUploadSizes
fn default() -> AboutMaxUploadSizes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AboutMaxUploadSizes
impl<'de> Deserialize<'de> for AboutMaxUploadSizes
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 Serialize for AboutMaxUploadSizes
impl Serialize for AboutMaxUploadSizes
impl NestedType for AboutMaxUploadSizes
impl Part for AboutMaxUploadSizes
Auto Trait Implementations§
impl Freeze for AboutMaxUploadSizes
impl RefUnwindSafe for AboutMaxUploadSizes
impl Send for AboutMaxUploadSizes
impl Sync for AboutMaxUploadSizes
impl Unpin for AboutMaxUploadSizes
impl UnwindSafe for AboutMaxUploadSizes
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