pub struct RoleRepresentation {
pub attributes: Option<HashMap<String, String>>,
pub client_role: Option<bool>,
pub composite: Option<bool>,
pub composites: Option<RoleRepresentationComposites>,
pub container_id: Option<String>,
pub description: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
}Fields§
§attributes: Option<HashMap<String, String>>§client_role: Option<bool>§composite: Option<bool>§composites: Option<RoleRepresentationComposites>§container_id: Option<String>§description: Option<String>§id: Option<String>§name: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for RoleRepresentation
impl Clone for RoleRepresentation
Source§fn clone(&self) -> RoleRepresentation
fn clone(&self) -> RoleRepresentation
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 RoleRepresentation
impl Debug for RoleRepresentation
Source§impl Default for RoleRepresentation
impl Default for RoleRepresentation
Source§fn default() -> RoleRepresentation
fn default() -> RoleRepresentation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RoleRepresentation
impl<'de> Deserialize<'de> for RoleRepresentation
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
Auto Trait Implementations§
impl Freeze for RoleRepresentation
impl RefUnwindSafe for RoleRepresentation
impl Send for RoleRepresentation
impl Sync for RoleRepresentation
impl Unpin for RoleRepresentation
impl UnsafeUnpin for RoleRepresentation
impl UnwindSafe for RoleRepresentation
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