pub struct CoreDumpInstancesSection {
pub instances: Vec<CoreDumpInstance, Global>,
}
Expand description
A custom section representing the instances involved in a given coredump
Fields§
§instances: Vec<CoreDumpInstance, Global>
The instances for the coredump
Trait Implementations§
source§impl<'a> FromReader<'a> for CoreDumpInstancesSection
impl<'a> FromReader<'a> for CoreDumpInstancesSection
source§fn from_reader(
reader: &mut BinaryReader<'a>
) -> Result<CoreDumpInstancesSection, BinaryReaderError>
fn from_reader( reader: &mut BinaryReader<'a> ) -> Result<CoreDumpInstancesSection, BinaryReaderError>
Attempts to read
Self
from the provided binary reader, returning an
error if it is unable to do so.Auto Trait Implementations§
impl RefUnwindSafe for CoreDumpInstancesSection
impl Send for CoreDumpInstancesSection
impl Sync for CoreDumpInstancesSection
impl Unpin for CoreDumpInstancesSection
impl UnwindSafe for CoreDumpInstancesSection
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