pub struct GuestRole {
pub id: Option<Uuid>,
pub name: String,
pub slug: String,
pub description: Option<String>,
pub permission: Permission,
pub created: DateTime<Local>,
pub updated: Option<DateTime<Local>>,
pub system: bool,
pub children: Option<Children<GuestRole, Uuid>>,
}Expand description
This is a re-exportation from the myc core to allow users to import both from myc-http-tools instead of the myc-core.
Fields§
§id: Option<Uuid>§name: String§slug: String§description: Option<String>§permission: Permission§created: DateTime<Local>The date and time the role was created
updated: Option<DateTime<Local>>The date and time the role was last updated
system: boolIf it is a system role
System roles represents standard core actors of the Mycelium API
Gateway, defined in SystemActor
children: Option<Children<GuestRole, Uuid>>Children roles represents guest roles that are children of the current role, and should be used to determine the allowed roles for the role owner guest other users.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GuestRole
impl<'de> Deserialize<'de> for GuestRole
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GuestRole, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GuestRole, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for GuestRole
impl Serialize for GuestRole
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for GuestRole
impl StructuralPartialEq for GuestRole
Auto Trait Implementations§
impl Freeze for GuestRole
impl RefUnwindSafe for GuestRole
impl Send for GuestRole
impl Sync for GuestRole
impl Unpin for GuestRole
impl UnwindSafe for GuestRole
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.