pub struct CreateTenantUserResponse {
pub status: ApiStatus,
pub tenant_user: Box<User>,
}Fields§
§status: ApiStatus§tenant_user: Box<User>Implementations§
Source§impl CreateTenantUserResponse
impl CreateTenantUserResponse
pub fn new(status: ApiStatus, tenant_user: User) -> CreateTenantUserResponse
Trait Implementations§
Source§impl Clone for CreateTenantUserResponse
impl Clone for CreateTenantUserResponse
Source§fn clone(&self) -> CreateTenantUserResponse
fn clone(&self) -> CreateTenantUserResponse
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 CreateTenantUserResponse
impl Debug for CreateTenantUserResponse
Source§impl Default for CreateTenantUserResponse
impl Default for CreateTenantUserResponse
Source§fn default() -> CreateTenantUserResponse
fn default() -> CreateTenantUserResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateTenantUserResponse
impl<'de> Deserialize<'de> for CreateTenantUserResponse
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 CreateTenantUserResponse
impl PartialEq for CreateTenantUserResponse
Source§impl Serialize for CreateTenantUserResponse
impl Serialize for CreateTenantUserResponse
impl StructuralPartialEq for CreateTenantUserResponse
Auto Trait Implementations§
impl Freeze for CreateTenantUserResponse
impl RefUnwindSafe for CreateTenantUserResponse
impl Send for CreateTenantUserResponse
impl Sync for CreateTenantUserResponse
impl Unpin for CreateTenantUserResponse
impl UnwindSafe for CreateTenantUserResponse
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