pub struct CreateProjectBranding {
pub favicon_type: Option<String>,
pub favicon_url: Option<String>,
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§
§favicon_type: Option<String>§favicon_url: Option<String>§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 duplicate 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§fn default() -> CreateProjectBranding
fn default() -> CreateProjectBranding
Returns the “default value” for a type. Read more
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 for CreateProjectBranding
impl PartialEq for CreateProjectBranding
Source§impl Serialize for CreateProjectBranding
impl Serialize for CreateProjectBranding
impl StructuralPartialEq for CreateProjectBranding
Auto Trait Implementations§
impl Freeze for CreateProjectBranding
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