pub enum IdentityProperty {
Id,
Name,
Email,
ReplyTo,
Bcc,
TextSignature,
HtmlSignature,
MayDelete,
}Expand description
Property selector for crate::Identity /get and /set.
Variants§
Id
The id property (RFC 8621 §6).
Name
The name property (RFC 8621 §6).
The email property (RFC 8621 §6).
ReplyTo
The replyTo property (RFC 8621 §6).
Bcc
The bcc property (RFC 8621 §6).
TextSignature
The textSignature property (RFC 8621 §6).
HtmlSignature
The htmlSignature property (RFC 8621 §6).
MayDelete
The mayDelete property (RFC 8621 §6).
Trait Implementations§
Source§impl Clone for IdentityProperty
impl Clone for IdentityProperty
Source§fn clone(&self) -> IdentityProperty
fn clone(&self) -> IdentityProperty
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IdentityProperty
impl Debug for IdentityProperty
impl Eq for IdentityProperty
Source§impl Hash for IdentityProperty
impl Hash for IdentityProperty
Source§impl PartialEq for IdentityProperty
impl PartialEq for IdentityProperty
Source§fn eq(&self, other: &IdentityProperty) -> bool
fn eq(&self, other: &IdentityProperty) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IdentityProperty
Auto Trait Implementations§
impl Freeze for IdentityProperty
impl RefUnwindSafe for IdentityProperty
impl Send for IdentityProperty
impl Sync for IdentityProperty
impl Unpin for IdentityProperty
impl UnsafeUnpin for IdentityProperty
impl UnwindSafe for IdentityProperty
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