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