pub struct ExtractedEmail {
pub address: String,
pub context: String,
pub position: usize,
}Expand description
Extracted email address
Fields§
§address: String§context: String§position: usizeTrait Implementations§
Source§impl Clone for ExtractedEmail
impl Clone for ExtractedEmail
Source§fn clone(&self) -> ExtractedEmail
fn clone(&self) -> ExtractedEmail
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 ExtractedEmail
impl Debug for ExtractedEmail
Source§impl<'de> Deserialize<'de> for ExtractedEmail
impl<'de> Deserialize<'de> for ExtractedEmail
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExtractedEmail
impl RefUnwindSafe for ExtractedEmail
impl Send for ExtractedEmail
impl Sync for ExtractedEmail
impl Unpin for ExtractedEmail
impl UnwindSafe for ExtractedEmail
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