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