pub struct PythonFrame {
pub filename: String,
pub line: u32,
pub function: String,
pub text: Option<String>,
}Expand description
Parsed representation of a Python traceback frame.
Fields§
§filename: String§line: u32§function: String§text: Option<String>Trait Implementations§
Source§impl Clone for PythonFrame
impl Clone for PythonFrame
Source§fn clone(&self) -> PythonFrame
fn clone(&self) -> PythonFrame
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PythonFrame
impl RefUnwindSafe for PythonFrame
impl Send for PythonFrame
impl Sync for PythonFrame
impl Unpin for PythonFrame
impl UnsafeUnpin for PythonFrame
impl UnwindSafe for PythonFrame
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