pub struct UpdatePrimaryEmailAddressRequest {
pub email: String,
pub entity_id: String,
pub organization_id: String,
}Fields§
§email: StringThe value of the email to be updated as primary.
entity_id: StringThe user, group, or resource to update.
organization_id: StringThe organization that contains the user, group, or resource to update.
Trait Implementations§
Source§impl Clone for UpdatePrimaryEmailAddressRequest
impl Clone for UpdatePrimaryEmailAddressRequest
Source§fn clone(&self) -> UpdatePrimaryEmailAddressRequest
fn clone(&self) -> UpdatePrimaryEmailAddressRequest
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 Default for UpdatePrimaryEmailAddressRequest
impl Default for UpdatePrimaryEmailAddressRequest
Source§fn default() -> UpdatePrimaryEmailAddressRequest
fn default() -> UpdatePrimaryEmailAddressRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdatePrimaryEmailAddressRequest
impl PartialEq for UpdatePrimaryEmailAddressRequest
Source§fn eq(&self, other: &UpdatePrimaryEmailAddressRequest) -> bool
fn eq(&self, other: &UpdatePrimaryEmailAddressRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdatePrimaryEmailAddressRequest
Auto Trait Implementations§
impl Freeze for UpdatePrimaryEmailAddressRequest
impl RefUnwindSafe for UpdatePrimaryEmailAddressRequest
impl Send for UpdatePrimaryEmailAddressRequest
impl Sync for UpdatePrimaryEmailAddressRequest
impl Unpin for UpdatePrimaryEmailAddressRequest
impl UnwindSafe for UpdatePrimaryEmailAddressRequest
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