Struct ory_client::models::project_branding::ProjectBranding
source · 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 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 ProjectBranding
impl Debug for ProjectBranding
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<ProjectBranding> for ProjectBranding
impl PartialEq<ProjectBranding> for ProjectBranding
source§fn eq(&self, other: &ProjectBranding) -> bool
fn eq(&self, other: &ProjectBranding) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for ProjectBranding
impl Serialize for ProjectBranding
impl StructuralPartialEq for ProjectBranding
Auto Trait Implementations§
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