pub struct FramePath {
pub raw_path: String,
pub crate_name: Option<Cow<'static, str>>,
pub split_path: Option<FramePrefix>,
}Expand description
File path information for a stack frame.
Contains the raw path and processed components for better display formatting.
Fields§
§raw_path: StringThe raw file path from the debug information.
crate_name: Option<Cow<'static, str>>The crate name if detected from the path.
split_path: Option<FramePrefix>Common path prefix information for shortening display.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FramePath
impl RefUnwindSafe for FramePath
impl Send for FramePath
impl Sync for FramePath
impl Unpin for FramePath
impl UnwindSafe for FramePath
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