Struct sentry_types::protocol::v7::Breadcrumb   
source · [−]pub struct Breadcrumb {
    pub timestamp: SystemTime,
    pub ty: String,
    pub category: Option<String>,
    pub level: Level,
    pub message: Option<String>,
    pub data: Map<String, Value>,
}Expand description
Represents a single breadcrumb.
Fields
timestamp: SystemTimeThe timestamp of the breadcrumb. This is required.
ty: StringThe type of the breadcrumb.
category: Option<String>The optional category of the breadcrumb.
level: LevelThe non optional level of the breadcrumb. It defaults to info.
message: Option<String>An optional human readbale message for the breadcrumb.
data: Map<String, Value>Arbitrary breadcrumb data that should be send along.
Trait Implementations
sourceimpl Clone for Breadcrumb
 
impl Clone for Breadcrumb
sourcefn clone(&self) -> Breadcrumb
 
fn clone(&self) -> Breadcrumb
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 Breadcrumb
 
impl Debug for Breadcrumb
sourceimpl Default for Breadcrumb
 
impl Default for Breadcrumb
sourcefn default() -> Breadcrumb
 
fn default() -> Breadcrumb
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for Breadcrumb
 
impl<'de> Deserialize<'de> for Breadcrumb
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
    __D: Deserializer<'de>, 
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
    __D: Deserializer<'de>, 
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<Breadcrumb> for Breadcrumb
 
impl PartialEq<Breadcrumb> for Breadcrumb
sourcefn eq(&self, other: &Breadcrumb) -> bool
 
fn eq(&self, other: &Breadcrumb) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &Breadcrumb) -> bool
 
fn ne(&self, other: &Breadcrumb) -> bool
This method tests for !=.
sourceimpl Serialize for Breadcrumb
 
impl Serialize for Breadcrumb
impl StructuralPartialEq for Breadcrumb
Auto Trait Implementations
impl RefUnwindSafe for Breadcrumb
impl Send for Breadcrumb
impl Sync for Breadcrumb
impl Unpin for Breadcrumb
impl UnwindSafe for Breadcrumb
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
