pub struct ResourceServerRepresentation {
pub allow_remote_resource_management: Option<bool>,
pub authorization_schema: Option<AuthorizationSchema>,
pub client_id: Option<TypeString>,
pub decision_strategy: Option<DecisionStrategy>,
pub id: Option<TypeString>,
pub name: Option<TypeString>,
pub policies: Option<TypeVec<PolicyRepresentation>>,
pub policy_enforcement_mode: Option<PolicyEnforcementMode>,
pub resources: Option<TypeVec<ResourceRepresentation>>,
pub scopes: Option<TypeVec<ScopeRepresentation>>,
}Fields§
§allow_remote_resource_management: Option<bool>§client_id: Option<TypeString>§decision_strategy: Option<DecisionStrategy>§id: Option<TypeString>§name: Option<TypeString>§policies: Option<TypeVec<PolicyRepresentation>>§policy_enforcement_mode: Option<PolicyEnforcementMode>§resources: Option<TypeVec<ResourceRepresentation>>§scopes: Option<TypeVec<ScopeRepresentation>>Trait Implementations§
Source§impl Clone for ResourceServerRepresentation
impl Clone for ResourceServerRepresentation
Source§fn clone(&self) -> ResourceServerRepresentation
fn clone(&self) -> ResourceServerRepresentation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ResourceServerRepresentation
impl Debug for ResourceServerRepresentation
Source§impl Default for ResourceServerRepresentation
impl Default for ResourceServerRepresentation
Source§fn default() -> ResourceServerRepresentation
fn default() -> ResourceServerRepresentation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResourceServerRepresentation
impl<'de> Deserialize<'de> for ResourceServerRepresentation
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 Eq for ResourceServerRepresentation
Source§impl PartialEq for ResourceServerRepresentation
impl PartialEq for ResourceServerRepresentation
Source§fn eq(&self, other: &ResourceServerRepresentation) -> bool
fn eq(&self, other: &ResourceServerRepresentation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResourceServerRepresentation
Auto Trait Implementations§
impl Freeze for ResourceServerRepresentation
impl RefUnwindSafe for ResourceServerRepresentation
impl Send for ResourceServerRepresentation
impl Sync for ResourceServerRepresentation
impl Unpin for ResourceServerRepresentation
impl UnsafeUnpin for ResourceServerRepresentation
impl UnwindSafe for ResourceServerRepresentation
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