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§
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<Attachment> for Attachment
impl PartialEq<Attachment> 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 ==
.