[][src]Struct graph_rs_types::entitytypes::RoleDefinition

pub struct RoleDefinition {
    pub display_name: String,
    pub description: String,
    pub role_permissions: Vec<RolePermission>,
    pub is_built_in: bool,
    pub role_assignments: Vec<RoleAssignment>,
}

Fields

display_name: Stringdescription: Stringrole_permissions: Vec<RolePermission>is_built_in: boolrole_assignments: Vec<RoleAssignment>

Trait Implementations

impl Eq for RoleDefinition[src]

impl Clone for RoleDefinition[src]

impl PartialEq<RoleDefinition> for RoleDefinition[src]

impl Debug for RoleDefinition[src]

impl Serialize for RoleDefinition[src]

impl<'de> Deserialize<'de> for RoleDefinition[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

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