Struct sentry_core::protocol::Attachment
source · pub struct Attachment {
pub buffer: Vec<u8>,
pub filename: String,
pub content_type: Option<String>,
pub ty: Option<AttachmentType>,
}
Expand description
Represents an attachment item.
Fields§
§buffer: Vec<u8>
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§
source§impl Clone for Attachment
impl Clone for Attachment
source§fn clone(&self) -> Attachment
fn clone(&self) -> Attachment
Returns a copy 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 Attachment
impl Debug for Attachment
source§impl Default for Attachment
impl Default for Attachment
source§fn default() -> Attachment
fn default() -> Attachment
Returns the “default value” for a type. Read more
source§impl From<Attachment> for EnvelopeItem
impl From<Attachment> for EnvelopeItem
source§fn from(attachment: Attachment) -> EnvelopeItem
fn from(attachment: Attachment) -> EnvelopeItem
Converts to this type from the input type.
source§impl PartialEq for Attachment
impl PartialEq for Attachment
source§fn 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 ==
.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§
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