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