Struct sentry_types::protocol::v7::SymbolicDebugImage
source · [−]pub struct SymbolicDebugImage {
pub name: String,
pub arch: Option<String>,
pub image_addr: Addr,
pub image_size: u64,
pub image_vmaddr: Addr,
pub id: DebugId,
}Expand description
Represents a symbolic debug image.
Fields
name: StringThe name of the debug image (usually filename)
arch: Option<String>The optional CPU architecture of the debug image.
image_addr: AddrThe starting address of the image.
image_size: u64The size of the image in bytes.
image_vmaddr: AddrThe address where the image is loaded at runtime.
id: DebugIdThe unique debug id of the image.
Trait Implementations
sourceimpl Clone for SymbolicDebugImage
impl Clone for SymbolicDebugImage
sourcefn clone(&self) -> SymbolicDebugImage
fn clone(&self) -> SymbolicDebugImage
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 SymbolicDebugImage
impl Debug for SymbolicDebugImage
sourceimpl<'de> Deserialize<'de> for SymbolicDebugImage
impl<'de> Deserialize<'de> for SymbolicDebugImage
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 From<SymbolicDebugImage> for DebugImage
impl From<SymbolicDebugImage> for DebugImage
sourcefn from(data: SymbolicDebugImage) -> DebugImage
fn from(data: SymbolicDebugImage) -> DebugImage
Performs the conversion.
sourceimpl PartialEq<SymbolicDebugImage> for SymbolicDebugImage
impl PartialEq<SymbolicDebugImage> for SymbolicDebugImage
sourcefn eq(&self, other: &SymbolicDebugImage) -> bool
fn eq(&self, other: &SymbolicDebugImage) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &SymbolicDebugImage) -> bool
fn ne(&self, other: &SymbolicDebugImage) -> bool
This method tests for !=.
sourceimpl Serialize for SymbolicDebugImage
impl Serialize for SymbolicDebugImage
impl StructuralPartialEq for SymbolicDebugImage
Auto Trait Implementations
impl RefUnwindSafe for SymbolicDebugImage
impl Send for SymbolicDebugImage
impl Sync for SymbolicDebugImage
impl Unpin for SymbolicDebugImage
impl UnwindSafe for SymbolicDebugImage
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more