pub struct GroupUser {
pub group: Option<String>,
pub username: Option<String>,
pub is_admin: Option<bool>,
pub uuid: Option<Uuid>,
}Fields§
§group: Option<String>§username: Option<String>§is_admin: Option<bool>§uuid: Option<Uuid>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GroupUser
impl<'de> Deserialize<'de> for GroupUser
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
impl StructuralPartialEq for GroupUser
Auto Trait Implementations§
impl Freeze for GroupUser
impl RefUnwindSafe for GroupUser
impl Send for GroupUser
impl Sync for GroupUser
impl Unpin for GroupUser
impl UnsafeUnpin for GroupUser
impl UnwindSafe for GroupUser
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