Struct sentry::protocol::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: String
The name of the debug image (usually filename)
arch: Option<String>
The optional CPU architecture of the debug image.
image_addr: Addr
The starting address of the image.
image_size: u64
The size of the image in bytes.
image_vmaddr: Addr
The address where the image is loaded at runtime.
id: DebugId
The unique debug id of the image.
Trait Implementations
sourceimpl Clone for SymbolicDebugImage
impl Clone for SymbolicDebugImage
sourcepub fn clone(&self) -> SymbolicDebugImage
pub 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
sourcepub fn deserialize<__D>(
__deserializer: __D
) -> Result<SymbolicDebugImage, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<SymbolicDebugImage, <__D as Deserializer<'de>>::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
sourcepub fn from(data: SymbolicDebugImage) -> DebugImage
pub fn from(data: SymbolicDebugImage) -> DebugImage
Performs the conversion.
sourceimpl PartialEq<SymbolicDebugImage> for SymbolicDebugImage
impl PartialEq<SymbolicDebugImage> for SymbolicDebugImage
sourcepub fn eq(&self, other: &SymbolicDebugImage) -> bool
pub fn eq(&self, other: &SymbolicDebugImage) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcepub fn ne(&self, other: &SymbolicDebugImage) -> bool
pub fn ne(&self, other: &SymbolicDebugImage) -> bool
This method tests for !=
.
sourceimpl Serialize for SymbolicDebugImage
impl Serialize for SymbolicDebugImage
sourcepub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub 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 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