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