pub struct Brand {Show 14 fields
pub brand_uuid: Uuid,
pub domain: String,
pub default: Option<bool>,
pub branding_title: Option<String>,
pub branding_logo: Option<String>,
pub branding_favicon: Option<String>,
pub flow_authentication: Option<Option<Uuid>>,
pub flow_invalidation: Option<Option<Uuid>>,
pub flow_recovery: Option<Option<Uuid>>,
pub flow_unenrollment: Option<Option<Uuid>>,
pub flow_user_settings: Option<Option<Uuid>>,
pub flow_device_code: Option<Option<Uuid>>,
pub web_certificate: Option<Option<Uuid>>,
pub attributes: Option<Option<Value>>,
}
Expand description
Brand : Brand Serializer
Fields§
§brand_uuid: Uuid
§domain: String
Domain that activates this brand. Can be a superset, i.e. a.b
for aa.b
and ba.b
default: Option<bool>
§branding_title: Option<String>
§branding_logo: Option<String>
§branding_favicon: Option<String>
§flow_authentication: Option<Option<Uuid>>
§flow_invalidation: Option<Option<Uuid>>
§flow_recovery: Option<Option<Uuid>>
§flow_unenrollment: Option<Option<Uuid>>
§flow_user_settings: Option<Option<Uuid>>
§flow_device_code: Option<Option<Uuid>>
§web_certificate: Option<Option<Uuid>>
Web Certificate used by the authentik Core webserver.
attributes: Option<Option<Value>>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Brand
impl<'de> Deserialize<'de> for Brand
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
impl StructuralPartialEq for Brand
Auto Trait Implementations§
impl Freeze for Brand
impl RefUnwindSafe for Brand
impl Send for Brand
impl Sync for Brand
impl Unpin for Brand
impl UnwindSafe for Brand
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