pub struct ProviderOrganizationCreateRequestModel {
pub client_owner_email: String,
pub organization_create_request: Box<OrganizationCreateRequestModel>,
}
Fields§
§client_owner_email: String
§organization_create_request: Box<OrganizationCreateRequestModel>
Implementations§
Source§impl ProviderOrganizationCreateRequestModel
impl ProviderOrganizationCreateRequestModel
pub fn new( client_owner_email: String, organization_create_request: OrganizationCreateRequestModel, ) -> ProviderOrganizationCreateRequestModel
Trait Implementations§
Source§impl Clone for ProviderOrganizationCreateRequestModel
impl Clone for ProviderOrganizationCreateRequestModel
Source§fn clone(&self) -> ProviderOrganizationCreateRequestModel
fn clone(&self) -> ProviderOrganizationCreateRequestModel
Returns a copy 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 Default for ProviderOrganizationCreateRequestModel
impl Default for ProviderOrganizationCreateRequestModel
Source§fn default() -> ProviderOrganizationCreateRequestModel
fn default() -> ProviderOrganizationCreateRequestModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProviderOrganizationCreateRequestModel
impl<'de> Deserialize<'de> for ProviderOrganizationCreateRequestModel
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 ProviderOrganizationCreateRequestModel
impl PartialEq for ProviderOrganizationCreateRequestModel
Source§fn eq(&self, other: &ProviderOrganizationCreateRequestModel) -> bool
fn eq(&self, other: &ProviderOrganizationCreateRequestModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ProviderOrganizationCreateRequestModel
Auto Trait Implementations§
impl Freeze for ProviderOrganizationCreateRequestModel
impl RefUnwindSafe for ProviderOrganizationCreateRequestModel
impl Send for ProviderOrganizationCreateRequestModel
impl Sync for ProviderOrganizationCreateRequestModel
impl Unpin for ProviderOrganizationCreateRequestModel
impl UnwindSafe for ProviderOrganizationCreateRequestModel
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