Struct sentry_core::protocol::TemplateInfo  
source · pub struct TemplateInfo {
    pub filename: Option<String>,
    pub abs_path: Option<String>,
    pub lineno: Option<u64>,
    pub colno: Option<u64>,
    pub pre_context: Vec<String>,
    pub context_line: Option<String>,
    pub post_context: Vec<String>,
}Expand description
Represents template debug info.
Fields§
§filename: Option<String>The filename (basename only).
abs_path: Option<String>If known the absolute path.
lineno: Option<u64>The line number if known.
colno: Option<u64>The column number if known.
pre_context: Vec<String>The sources of the lines leading up to the current line.
context_line: Option<String>The current line as source.
post_context: Vec<String>The sources of the lines after the current line.
Trait Implementations§
source§impl Clone for TemplateInfo
 
impl Clone for TemplateInfo
source§fn clone(&self) -> TemplateInfo
 
fn clone(&self) -> TemplateInfo
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 TemplateInfo
 
impl Debug for TemplateInfo
source§impl Default for TemplateInfo
 
impl Default for TemplateInfo
source§fn default() -> TemplateInfo
 
fn default() -> TemplateInfo
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TemplateInfo
 
impl<'de> Deserialize<'de> for TemplateInfo
source§fn deserialize<__D>(
    __deserializer: __D
) -> Result<TemplateInfo, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D
) -> Result<TemplateInfo, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for TemplateInfo
 
impl PartialEq for TemplateInfo
source§fn eq(&self, other: &TemplateInfo) -> bool
 
fn eq(&self, other: &TemplateInfo) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for TemplateInfo
 
impl Serialize for TemplateInfo
source§fn serialize<__S>(
    &self,
    __serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
 
fn serialize<__S>(
    &self,
    __serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for TemplateInfo
Auto Trait Implementations§
impl Freeze for TemplateInfo
impl RefUnwindSafe for TemplateInfo
impl Send for TemplateInfo
impl Sync for TemplateInfo
impl Unpin for TemplateInfo
impl UnwindSafe for TemplateInfo
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> IntoEither for T
 
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more