pub struct ListUsersUsers {
pub id: Uuid,
pub email: String,
pub name: String,
pub user_type: UserType,
pub created_at: Timestamp,
pub deleted: bool,
pub deleted_at: Option<Timestamp>,
pub first_activity: Option<Timestamp>,
pub last_activity: Option<Timestamp>,
pub teams: Vec<ListUsersUsersTeams>,
}Fields§
§id: Uuid§email: String§name: String§user_type: UserType§created_at: Timestamp§deleted: bool§deleted_at: Option<Timestamp>§first_activity: Option<Timestamp>§last_activity: Option<Timestamp>§teams: Vec<ListUsersUsersTeams>Trait Implementations§
Source§impl Clone for ListUsersUsers
impl Clone for ListUsersUsers
Source§fn clone(&self) -> ListUsersUsers
fn clone(&self) -> ListUsersUsers
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 ListUsersUsers
impl Debug for ListUsersUsers
Source§impl<'de> Deserialize<'de> for ListUsersUsers
impl<'de> Deserialize<'de> for ListUsersUsers
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 ListUsersUsers
impl RefUnwindSafe for ListUsersUsers
impl Send for ListUsersUsers
impl Sync for ListUsersUsers
impl Unpin for ListUsersUsers
impl UnsafeUnpin for ListUsersUsers
impl UnwindSafe for ListUsersUsers
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