pub struct AddRecipient { /* private fields */ }
Expand description
Does not change To in Header
Implementations§
Trait Implementations§
Source§impl Clone for AddRecipient
impl Clone for AddRecipient
Source§fn clone(&self) -> AddRecipient
fn clone(&self) -> AddRecipient
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 Debug for AddRecipient
impl Debug for AddRecipient
Source§impl From<AddRecipient> for ModificationAction
impl From<AddRecipient> for ModificationAction
Source§fn from(v: AddRecipient) -> ModificationAction
fn from(v: AddRecipient) -> ModificationAction
Converts to this type from the input type.
Source§impl From<AddRecipient> for ServerCommand
impl From<AddRecipient> for ServerCommand
Source§fn from(value: AddRecipient) -> Self
fn from(value: AddRecipient) -> Self
Converts to this type from the input type.
Source§impl TryInto<AddRecipient> for ModificationAction
impl TryInto<AddRecipient> for ModificationAction
Source§impl Writable for AddRecipient
impl Writable for AddRecipient
Auto Trait Implementations§
impl Freeze for AddRecipient
impl RefUnwindSafe for AddRecipient
impl Send for AddRecipient
impl Sync for AddRecipient
impl Unpin for AddRecipient
impl UnwindSafe for AddRecipient
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more