pub struct AuthorizerConfig {
pub allow_authorizer_override: Option<bool>,
pub default_authorizer_name: Option<String>,
}Expand description
An object that specifies the authorization service for a domain.
Fields§
A Boolean that specifies whether the domain configuration's authorization service can be overridden.
The name of the authorization service for a domain configuration.
Trait Implementations§
Source§impl Clone for AuthorizerConfig
impl Clone for AuthorizerConfig
Source§fn clone(&self) -> AuthorizerConfig
fn clone(&self) -> AuthorizerConfig
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 AuthorizerConfig
impl Debug for AuthorizerConfig
Source§impl Default for AuthorizerConfig
impl Default for AuthorizerConfig
Source§fn default() -> AuthorizerConfig
fn default() -> AuthorizerConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthorizerConfig
impl<'de> Deserialize<'de> for AuthorizerConfig
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 AuthorizerConfig
impl PartialEq for AuthorizerConfig
Source§impl Serialize for AuthorizerConfig
impl Serialize for AuthorizerConfig
impl StructuralPartialEq for AuthorizerConfig
Auto Trait Implementations§
impl Freeze for AuthorizerConfig
impl RefUnwindSafe for AuthorizerConfig
impl Send for AuthorizerConfig
impl Sync for AuthorizerConfig
impl Unpin for AuthorizerConfig
impl UnwindSafe for AuthorizerConfig
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