pub struct ProjectBranding {
pub created_at: String,
pub default_theme: Box<ProjectBrandingTheme>,
pub id: String,
pub project_id: String,
pub themes: Vec<ProjectBrandingTheme>,
pub updated_at: String,
}Fields§
§created_at: StringThe Customization Creation Date
default_theme: Box<ProjectBrandingTheme>§id: StringThe customization ID.
project_id: StringThe Project’s ID this customization is associated with
themes: Vec<ProjectBrandingTheme>§updated_at: StringLast Time Branding was Updated
Implementations§
Source§impl ProjectBranding
impl ProjectBranding
pub fn new( created_at: String, default_theme: ProjectBrandingTheme, id: String, project_id: String, themes: Vec<ProjectBrandingTheme>, updated_at: String, ) -> ProjectBranding
Trait Implementations§
Source§impl Clone for ProjectBranding
impl Clone for ProjectBranding
Source§fn clone(&self) -> ProjectBranding
fn clone(&self) -> ProjectBranding
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 ProjectBranding
impl Debug for ProjectBranding
Source§impl Default for ProjectBranding
impl Default for ProjectBranding
Source§fn default() -> ProjectBranding
fn default() -> ProjectBranding
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectBranding
impl<'de> Deserialize<'de> for ProjectBranding
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 ProjectBranding
impl PartialEq for ProjectBranding
Source§impl Serialize for ProjectBranding
impl Serialize for ProjectBranding
impl StructuralPartialEq for ProjectBranding
Auto Trait Implementations§
impl Freeze for ProjectBranding
impl RefUnwindSafe for ProjectBranding
impl Send for ProjectBranding
impl Sync for ProjectBranding
impl Unpin for ProjectBranding
impl UnwindSafe for ProjectBranding
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