Sha256: a8550b70b3c83f6852a1dba83cf97b1325238b5aa3ce7b35437e9382cdafd924
Contents?: true
Size: 536 Bytes
Versions: 22
Compression:
Stored size: 536 Bytes
Contents
//! Empty implementation of unwinding used when no other implementation is //! appropriate. use core::ffi::c_void; #[inline(always)] pub fn trace(_cb: &mut dyn FnMut(&super::Frame) -> bool) {} #[derive(Clone)] pub struct Frame; impl Frame { pub fn ip(&self) -> *mut c_void { 0 as *mut _ } pub fn sp(&self) -> *mut c_void { 0 as *mut _ } pub fn symbol_address(&self) -> *mut c_void { 0 as *mut _ } pub fn module_base_address(&self) -> Option<*mut c_void> { None } }
Version data entries
22 entries across 22 versions & 1 rubygems