pub struct UploadBrandingLogoBody {
pub file: String,
}Expand description
UploadBrandingLogoBody
JSON schema
{
"type": "object",
"required": [
"file"
],
"properties": {
"file": {
"default": "File",
"type": "string",
"format": "binary"
}
}
}Fields§
§file: StringImplementations§
Source§impl UploadBrandingLogoBody
impl UploadBrandingLogoBody
pub fn builder() -> UploadBrandingLogoBody
Trait Implementations§
Source§impl Clone for UploadBrandingLogoBody
impl Clone for UploadBrandingLogoBody
Source§fn clone(&self) -> UploadBrandingLogoBody
fn clone(&self) -> UploadBrandingLogoBody
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UploadBrandingLogoBody
impl Debug for UploadBrandingLogoBody
Source§impl<'de> Deserialize<'de> for UploadBrandingLogoBody
impl<'de> Deserialize<'de> for UploadBrandingLogoBody
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 From<&UploadBrandingLogoBody> for UploadBrandingLogoBody
impl From<&UploadBrandingLogoBody> for UploadBrandingLogoBody
Source§fn from(value: &UploadBrandingLogoBody) -> Self
fn from(value: &UploadBrandingLogoBody) -> Self
Converts to this type from the input type.
Source§impl From<UploadBrandingLogoBody> for UploadBrandingLogoBody
impl From<UploadBrandingLogoBody> for UploadBrandingLogoBody
Source§fn from(value: UploadBrandingLogoBody) -> Self
fn from(value: UploadBrandingLogoBody) -> Self
Converts to this type from the input type.
Source§impl Serialize for UploadBrandingLogoBody
impl Serialize for UploadBrandingLogoBody
Source§impl TryFrom<UploadBrandingLogoBody> for UploadBrandingLogoBody
impl TryFrom<UploadBrandingLogoBody> for UploadBrandingLogoBody
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: UploadBrandingLogoBody) -> Result<Self, ConversionError>
fn try_from(value: UploadBrandingLogoBody) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for UploadBrandingLogoBody
impl RefUnwindSafe for UploadBrandingLogoBody
impl Send for UploadBrandingLogoBody
impl Sync for UploadBrandingLogoBody
impl Unpin for UploadBrandingLogoBody
impl UnsafeUnpin for UploadBrandingLogoBody
impl UnwindSafe for UploadBrandingLogoBody
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