pub struct NewTenantRequest {
pub name: String,
}Expand description
Request to create a tenant (owner-only).
JSON schema
{
"description": "Request to create a tenant (owner-only).",
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"examples": [
"acme"
],
"type": "string"
}
}
}Fields§
§name: StringImplementations§
Source§impl NewTenantRequest
impl NewTenantRequest
pub fn builder() -> NewTenantRequest
Trait Implementations§
Source§impl Clone for NewTenantRequest
impl Clone for NewTenantRequest
Source§fn clone(&self) -> NewTenantRequest
fn clone(&self) -> NewTenantRequest
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 NewTenantRequest
impl Debug for NewTenantRequest
Source§impl<'de> Deserialize<'de> for NewTenantRequest
impl<'de> Deserialize<'de> for NewTenantRequest
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 From<&NewTenantRequest> for NewTenantRequest
impl From<&NewTenantRequest> for NewTenantRequest
Source§fn from(value: &NewTenantRequest) -> Self
fn from(value: &NewTenantRequest) -> Self
Converts to this type from the input type.
Source§impl From<NewTenantRequest> for NewTenantRequest
impl From<NewTenantRequest> for NewTenantRequest
Source§fn from(value: NewTenantRequest) -> Self
fn from(value: NewTenantRequest) -> Self
Converts to this type from the input type.
Source§impl Serialize for NewTenantRequest
impl Serialize for NewTenantRequest
Source§impl TryFrom<NewTenantRequest> for NewTenantRequest
impl TryFrom<NewTenantRequest> for NewTenantRequest
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: NewTenantRequest) -> Result<Self, ConversionError>
fn try_from(value: NewTenantRequest) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for NewTenantRequest
impl RefUnwindSafe for NewTenantRequest
impl Send for NewTenantRequest
impl Sync for NewTenantRequest
impl Unpin for NewTenantRequest
impl UnsafeUnpin for NewTenantRequest
impl UnwindSafe for NewTenantRequest
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