pub struct CallStack {
pub frames: Vec<Frame>,
}Fields§
§frames: Vec<Frame>Implementations§
Source§impl CallStack
impl CallStack
pub fn subset(&self, other: &Self) -> bool
pub fn has_keyword(&self, pat: &str) -> bool
pub fn from_string(s: &str) -> Self
pub fn new() -> Self
pub fn append(&mut self, frame: String)
pub fn get(&self, i: usize) -> Option<&Frame>
pub fn iter(&self) -> Iter<'_, Frame>
Trait Implementations§
impl Eq for CallStack
Auto Trait Implementations§
impl Freeze for CallStack
impl RefUnwindSafe for CallStack
impl Send for CallStack
impl Sync for CallStack
impl Unpin for CallStack
impl UnwindSafe for CallStack
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