Struct sentry_core::protocol::Attachment
source · [−]pub struct Attachment {
pub buffer: Vec<u8, Global>,
pub filename: String,
pub content_type: Option<String>,
pub ty: Option<AttachmentType>,
}
Expand description
Represents an attachment item.
Fields
buffer: Vec<u8, Global>
The actual attachment data.
filename: String
The filename of the attachment.
content_type: Option<String>
The Content Type of the attachment
ty: Option<AttachmentType>
The special type of this attachment.
Implementations
Trait Implementations
sourceimpl Clone for Attachment
impl Clone for Attachment
sourcefn clone(&self) -> Attachment
fn clone(&self) -> Attachment
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for Attachment
impl Debug for Attachment
sourceimpl Default for Attachment
impl Default for Attachment
sourcefn default() -> Attachment
fn default() -> Attachment
Returns the “default value” for a type. Read more
sourceimpl From<Attachment> for EnvelopeItem
impl From<Attachment> for EnvelopeItem
sourcefn from(attachment: Attachment) -> EnvelopeItem
fn from(attachment: Attachment) -> EnvelopeItem
Converts to this type from the input type.
sourceimpl PartialEq<Attachment> for Attachment
impl PartialEq<Attachment> for Attachment
sourcefn eq(&self, other: &Attachment) -> bool
fn eq(&self, other: &Attachment) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &Attachment) -> bool
fn ne(&self, other: &Attachment) -> bool
This method tests for !=
.
impl StructuralPartialEq for Attachment
Auto Trait Implementations
impl RefUnwindSafe for Attachment
impl Send for Attachment
impl Sync for Attachment
impl Unpin for Attachment
impl UnwindSafe for Attachment
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more