pub struct CreateOrganizationInput {
pub name: Option<String>,
pub url_key: Option<String>,
pub domain_access: Option<bool>,
pub timezone: Option<String>,
pub utm: Option<String>,
}Fields§
§name: Option<String>The name of the organization.
url_key: Option<String>The URL key of the organization.
domain_access: Option<bool>Whether the organization should allow email domain access.
timezone: Option<String>The timezone of the organization, passed in by client.
utm: Option<String>JSON serialized UTM parameters associated with the creation of the workspace.
Trait Implementations§
Source§impl Clone for CreateOrganizationInput
impl Clone for CreateOrganizationInput
Source§fn clone(&self) -> CreateOrganizationInput
fn clone(&self) -> CreateOrganizationInput
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 CreateOrganizationInput
impl Debug for CreateOrganizationInput
Source§impl Default for CreateOrganizationInput
impl Default for CreateOrganizationInput
Source§fn default() -> CreateOrganizationInput
fn default() -> CreateOrganizationInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateOrganizationInput
impl<'de> Deserialize<'de> for CreateOrganizationInput
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
Auto Trait Implementations§
impl Freeze for CreateOrganizationInput
impl RefUnwindSafe for CreateOrganizationInput
impl Send for CreateOrganizationInput
impl Sync for CreateOrganizationInput
impl Unpin for CreateOrganizationInput
impl UnwindSafe for CreateOrganizationInput
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