pub struct PermissionList {
pub permissions: Vec<Permission>,
}Expand description
Permission list.
Fields§
§permissions: Vec<Permission>Trait Implementations§
Source§impl Clone for PermissionList
impl Clone for PermissionList
Source§fn clone(&self) -> PermissionList
fn clone(&self) -> PermissionList
Returns a duplicate of the value. Read more
1.0.0 · 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 PermissionList
impl Debug for PermissionList
Source§impl<'de> Deserialize<'de> for PermissionList
impl<'de> Deserialize<'de> for PermissionList
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 PermissionList
impl RefUnwindSafe for PermissionList
impl Send for PermissionList
impl Sync for PermissionList
impl Unpin for PermissionList
impl UnwindSafe for PermissionList
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