pub struct CreateProjectBranding {
pub logo_type: Option<String>,
pub logo_url: Option<String>,
pub name: Option<String>,
pub theme: Option<Box<ProjectBrandingColors>>,
}Expand description
CreateProjectBranding : Create a Project Branding
Fields§
§logo_type: Option<String>§logo_url: Option<String>§name: Option<String>§theme: Option<Box<ProjectBrandingColors>>Implementations§
source§impl CreateProjectBranding
impl CreateProjectBranding
sourcepub fn new() -> CreateProjectBranding
pub fn new() -> CreateProjectBranding
Create a Project Branding
Trait Implementations§
source§impl Clone for CreateProjectBranding
impl Clone for CreateProjectBranding
source§fn clone(&self) -> CreateProjectBranding
fn clone(&self) -> CreateProjectBranding
Returns a copy 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 CreateProjectBranding
impl Debug for CreateProjectBranding
source§impl Default for CreateProjectBranding
impl Default for CreateProjectBranding
source§impl<'de> Deserialize<'de> for CreateProjectBranding
impl<'de> Deserialize<'de> for CreateProjectBranding
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<CreateProjectBranding> for CreateProjectBranding
impl PartialEq<CreateProjectBranding> for CreateProjectBranding
source§fn eq(&self, other: &CreateProjectBranding) -> bool
fn eq(&self, other: &CreateProjectBranding) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for CreateProjectBranding
impl Serialize for CreateProjectBranding
impl StructuralPartialEq for CreateProjectBranding
Auto Trait Implementations§
impl RefUnwindSafe for CreateProjectBranding
impl Send for CreateProjectBranding
impl Sync for CreateProjectBranding
impl Unpin for CreateProjectBranding
impl UnwindSafe for CreateProjectBranding
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