pub enum SenderTrust {
Trusted,
Mismatch,
Unknown,
Blocked,
}Expand description
Sender trust levels (from CRM graph or domain matching).
Variants§
Trusted
Known contact with matching domain.
Mismatch
Known contact but domain mismatch — possible impersonation.
Unknown
Not in CRM contacts.
Blocked
Explicitly blocklisted.
Trait Implementations§
Source§impl Clone for SenderTrust
impl Clone for SenderTrust
Source§fn clone(&self) -> SenderTrust
fn clone(&self) -> SenderTrust
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 SenderTrust
impl Debug for SenderTrust
Source§impl PartialEq for SenderTrust
impl PartialEq for SenderTrust
impl StructuralPartialEq for SenderTrust
Auto Trait Implementations§
impl Freeze for SenderTrust
impl RefUnwindSafe for SenderTrust
impl Send for SenderTrust
impl Sync for SenderTrust
impl Unpin for SenderTrust
impl UnsafeUnpin for SenderTrust
impl UnwindSafe for SenderTrust
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