pub struct AdminUserResponse {
pub user_id: i64,
pub login_name: String,
pub display_name: String,
pub is_admin: bool,
pub disabled_at: Option<DateTime<Utc>>,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}Fields§
§user_id: i64§login_name: String§display_name: String§is_admin: bool§disabled_at: Option<DateTime<Utc>>§created_at: DateTime<Utc>§updated_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for AdminUserResponse
impl Clone for AdminUserResponse
Source§fn clone(&self) -> AdminUserResponse
fn clone(&self) -> AdminUserResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for AdminUserResponse
impl ComposeSchema for AdminUserResponse
Source§impl Debug for AdminUserResponse
impl Debug for AdminUserResponse
Source§impl<'de> Deserialize<'de> for AdminUserResponse
impl<'de> Deserialize<'de> for AdminUserResponse
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
Source§impl Serialize for AdminUserResponse
impl Serialize for AdminUserResponse
Auto Trait Implementations§
impl Freeze for AdminUserResponse
impl RefUnwindSafe for AdminUserResponse
impl Send for AdminUserResponse
impl Sync for AdminUserResponse
impl Unpin for AdminUserResponse
impl UnsafeUnpin for AdminUserResponse
impl UnwindSafe for AdminUserResponse
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