pub struct MessageBodyCandidate {
pub mime_type: String,
pub text: String,
}Expand description
Decoded message body candidate inspected for verification codes.
Fields§
§mime_type: StringMIME type of the Gmail body part.
text: StringDecoded text content.
Trait Implementations§
Source§impl Clone for MessageBodyCandidate
impl Clone for MessageBodyCandidate
Source§fn clone(&self) -> MessageBodyCandidate
fn clone(&self) -> MessageBodyCandidate
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 MessageBodyCandidate
impl Debug for MessageBodyCandidate
Source§impl PartialEq for MessageBodyCandidate
impl PartialEq for MessageBodyCandidate
Source§fn eq(&self, other: &MessageBodyCandidate) -> bool
fn eq(&self, other: &MessageBodyCandidate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MessageBodyCandidate
impl StructuralPartialEq for MessageBodyCandidate
Auto Trait Implementations§
impl Freeze for MessageBodyCandidate
impl RefUnwindSafe for MessageBodyCandidate
impl Send for MessageBodyCandidate
impl Sync for MessageBodyCandidate
impl Unpin for MessageBodyCandidate
impl UnsafeUnpin for MessageBodyCandidate
impl UnwindSafe for MessageBodyCandidate
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