[][src]Struct keycloak::types::ResourceServerRepresentation

pub struct ResourceServerRepresentation<'a> {
    pub allow_remote_resource_management: Option<bool>,
    pub client_id: Option<Cow<'a, str>>,
    pub decision_strategy: Option<ResourceServerRepresentationDecisionStrategy>,
    pub id: Option<Cow<'a, str>>,
    pub name: Option<Cow<'a, str>>,
    pub policies: Option<Vec<PolicyRepresentation<'a>>>,
    pub policy_enforcement_mode: Option<ResourceServerRepresentationPolicyEnforcementMode>,
    pub resources: Option<Vec<ResourceRepresentation<'a>>>,
    pub scopes: Option<Vec<ScopeRepresentation<'a>>>,
}

Fields

allow_remote_resource_management: Option<bool>client_id: Option<Cow<'a, str>>decision_strategy: Option<ResourceServerRepresentationDecisionStrategy>id: Option<Cow<'a, str>>name: Option<Cow<'a, str>>policies: Option<Vec<PolicyRepresentation<'a>>>policy_enforcement_mode: Option<ResourceServerRepresentationPolicyEnforcementMode>resources: Option<Vec<ResourceRepresentation<'a>>>scopes: Option<Vec<ScopeRepresentation<'a>>>

Trait Implementations

impl<'a> Clone for ResourceServerRepresentation<'a>[src]

impl<'a> Debug for ResourceServerRepresentation<'a>[src]

impl<'a> Default for ResourceServerRepresentation<'a>[src]

impl<'de, 'a> Deserialize<'de> for ResourceServerRepresentation<'a>[src]

impl<'a> PartialEq<ResourceServerRepresentation<'a>> for ResourceServerRepresentation<'a>[src]

impl<'a> Serialize for ResourceServerRepresentation<'a>[src]

impl<'a> StructuralPartialEq for ResourceServerRepresentation<'a>[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.