Struct sentry_types::protocol::v7::Attachment
source · [−]pub struct Attachment {
pub buffer: Vec<u8>,
pub filename: 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.
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 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