pub struct TenantUser {
pub created_at: Option<String>,
pub email: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub role: Option<String>,
pub status: Option<String>,
pub tenant_id: Option<String>,
pub updated_at: Option<String>,
}Expand description
TenantUser model.
Fields§
§created_at: Option<String>§email: Option<String>§id: Option<String>§name: Option<String>§role: Option<String>§status: Option<String>§tenant_id: Option<String>§updated_at: Option<String>Trait Implementations§
Source§impl Clone for TenantUser
impl Clone for TenantUser
Source§fn clone(&self) -> TenantUser
fn clone(&self) -> TenantUser
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 Debug for TenantUser
impl Debug for TenantUser
Source§impl Default for TenantUser
impl Default for TenantUser
Source§fn default() -> TenantUser
fn default() -> TenantUser
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TenantUser
impl<'de> Deserialize<'de> for TenantUser
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 PartialEq for TenantUser
impl PartialEq for TenantUser
Source§impl Serialize for TenantUser
impl Serialize for TenantUser
impl StructuralPartialEq for TenantUser
Auto Trait Implementations§
impl Freeze for TenantUser
impl RefUnwindSafe for TenantUser
impl Send for TenantUser
impl Sync for TenantUser
impl Unpin for TenantUser
impl UnsafeUnpin for TenantUser
impl UnwindSafe for TenantUser
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