pub struct CoredumpToStack { /* private fields */ }
Implementations§
Source§impl CoredumpToStack
impl CoredumpToStack
pub fn new(coredump_bytes: &[u8]) -> Result<Self, Box<dyn Error>>
pub fn with_debug_sections( self, sections: HashMap<&'static str, Vec<u8>>, ) -> Result<Self, Box<dyn Error>>
pub fn with_debug_module(self, bytes: &[u8]) -> Result<Self, Box<dyn Error>>
pub fn stack(self) -> Result<Vec<Frame>, Box<dyn Error>>
Auto Trait Implementations§
impl Freeze for CoredumpToStack
impl RefUnwindSafe for CoredumpToStack
impl Send for CoredumpToStack
impl Sync for CoredumpToStack
impl Unpin for CoredumpToStack
impl UnwindSafe for CoredumpToStack
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