pub struct UnresolvedFrames {
pub frames: [Frame; 32],
pub depth: usize,
pub thread_name: [u8; 16],
pub thread_name_length: usize,
pub thread_id: u64,
}
Fields§
§frames: [Frame; 32]
§depth: usize
§thread_name: [u8; 16]
§thread_name_length: usize
§thread_id: u64
Implementations§
Trait Implementations§
Source§impl Clone for UnresolvedFrames
impl Clone for UnresolvedFrames
Source§impl Debug for UnresolvedFrames
impl Debug for UnresolvedFrames
Source§impl From<UnresolvedFrames> for Frames
impl From<UnresolvedFrames> for Frames
Source§fn from(frames: UnresolvedFrames) -> Self
fn from(frames: UnresolvedFrames) -> Self
Converts to this type from the input type.
Source§impl Hash for UnresolvedFrames
impl Hash for UnresolvedFrames
Source§impl PartialEq for UnresolvedFrames
impl PartialEq for UnresolvedFrames
impl Eq for UnresolvedFrames
Auto Trait Implementations§
impl Freeze for UnresolvedFrames
impl RefUnwindSafe for UnresolvedFrames
impl Send for UnresolvedFrames
impl Sync for UnresolvedFrames
impl Unpin for UnresolvedFrames
impl UnwindSafe for UnresolvedFrames
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