pub struct CallStackFrame {
pub fn_name: ImmutableString,
pub args: ThinVec<Dynamic>,
pub source: Option<ImmutableString>,
pub pos: Position,
}Expand description
A function call.
Fields§
§fn_name: ImmutableStringFunction name.
args: ThinVec<Dynamic>Copies of function call arguments, if any.
source: Option<ImmutableString>Source of the function.
pos: PositionPosition of the function call.
Trait Implementations§
Source§impl Clone for CallStackFrame
impl Clone for CallStackFrame
Source§fn clone(&self) -> CallStackFrame
fn clone(&self) -> CallStackFrame
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CallStackFrame
impl Debug for CallStackFrame
Source§impl Display for CallStackFrame
impl Display for CallStackFrame
Auto Trait Implementations§
impl !RefUnwindSafe for CallStackFrame
impl !Send for CallStackFrame
impl !Sync for CallStackFrame
impl !UnwindSafe for CallStackFrame
impl Freeze for CallStackFrame
impl Unpin for CallStackFrame
impl UnsafeUnpin for CallStackFrame
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<T> Variant for T
impl<T> Variant for T
Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert this
Variant trait object to &mut dyn Any.Source§fn as_boxed_any(self: Box<T>) -> Box<dyn Any>
fn as_boxed_any(self: Box<T>) -> Box<dyn Any>
Convert this
Variant trait object to Box<dyn Any>.