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