pub struct UserGroup {
pub id: i32,
pub users: Vec<i32>,
}Expand description
A clan. This is a group of multiple users.
Fields§
§id: i32The id of this clan.
users: Vec<i32>The users composing this clan.
Auto Trait Implementations§
impl Freeze for UserGroup
impl RefUnwindSafe for UserGroup
impl Send for UserGroup
impl Sync for UserGroup
impl Unpin for UserGroup
impl UnwindSafe for UserGroup
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