Struct sentry::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
impl StructuralPartialEq for Attachment
Auto Trait Implementations§
impl Freeze for Attachment
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)