pub struct ProjectLogoBodyLogo {
pub b64: String,
pub mime: Mime,
}Expand description
ProjectLogoBodyLogo : the logo to set, or null to clear the project’s current logo
Fields§
§b64: Stringbase64-encoded image bytes (decoded size max 512KB)
mime: MimeImplementations§
Source§impl ProjectLogoBodyLogo
impl ProjectLogoBodyLogo
Sourcepub fn new(b64: String, mime: Mime) -> ProjectLogoBodyLogo
pub fn new(b64: String, mime: Mime) -> ProjectLogoBodyLogo
the logo to set, or null to clear the project’s current logo
Trait Implementations§
Source§impl Clone for ProjectLogoBodyLogo
impl Clone for ProjectLogoBodyLogo
Source§fn clone(&self) -> ProjectLogoBodyLogo
fn clone(&self) -> ProjectLogoBodyLogo
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 ProjectLogoBodyLogo
impl Debug for ProjectLogoBodyLogo
Source§impl Default for ProjectLogoBodyLogo
impl Default for ProjectLogoBodyLogo
Source§fn default() -> ProjectLogoBodyLogo
fn default() -> ProjectLogoBodyLogo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectLogoBodyLogo
impl<'de> Deserialize<'de> for ProjectLogoBodyLogo
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 PartialEq for ProjectLogoBodyLogo
impl PartialEq for ProjectLogoBodyLogo
Source§impl Serialize for ProjectLogoBodyLogo
impl Serialize for ProjectLogoBodyLogo
impl StructuralPartialEq for ProjectLogoBodyLogo
Auto Trait Implementations§
impl Freeze for ProjectLogoBodyLogo
impl RefUnwindSafe for ProjectLogoBodyLogo
impl Send for ProjectLogoBodyLogo
impl Sync for ProjectLogoBodyLogo
impl Unpin for ProjectLogoBodyLogo
impl UnsafeUnpin for ProjectLogoBodyLogo
impl UnwindSafe for ProjectLogoBodyLogo
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