pub struct EmailParseRequest { /* private fields */ }
Implementations§
Source§impl EmailParseRequest
impl EmailParseRequest
pub fn new(params: RequestParams) -> Self
pub fn blob_ids<U, V>(&mut self, blob_ids: U) -> &mut Self
pub fn properties( &mut self, properties: impl IntoIterator<Item = Property>, ) -> &mut Self
pub fn body_properties( &mut self, body_properties: impl IntoIterator<Item = BodyProperty>, ) -> &mut Self
pub fn fetch_text_body_values( &mut self, fetch_text_body_values: bool, ) -> &mut Self
pub fn fetch_html_body_values( &mut self, fetch_html_body_values: bool, ) -> &mut Self
pub fn fetch_all_body_values( &mut self, fetch_all_body_values: bool, ) -> &mut Self
pub fn max_body_value_bytes(&mut self, max_body_value_bytes: usize) -> &mut Self
Trait Implementations§
Source§impl Clone for EmailParseRequest
impl Clone for EmailParseRequest
Source§fn clone(&self) -> EmailParseRequest
fn clone(&self) -> EmailParseRequest
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 EmailParseRequest
impl Debug for EmailParseRequest
Auto Trait Implementations§
impl Freeze for EmailParseRequest
impl RefUnwindSafe for EmailParseRequest
impl Send for EmailParseRequest
impl Sync for EmailParseRequest
impl Unpin for EmailParseRequest
impl UnwindSafe for EmailParseRequest
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