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