pub struct CtfeCallFrame {
pub func_name: String,
pub args: Vec<CtfeValueExt>,
pub depth: usize,
}Expand description
CTFE call stack frame
Fields§
§func_name: String§args: Vec<CtfeValueExt>§depth: usizeTrait Implementations§
Source§impl Clone for CtfeCallFrame
impl Clone for CtfeCallFrame
Source§fn clone(&self) -> CtfeCallFrame
fn clone(&self) -> CtfeCallFrame
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 CtfeCallFrame
impl RefUnwindSafe for CtfeCallFrame
impl Send for CtfeCallFrame
impl Sync for CtfeCallFrame
impl Unpin for CtfeCallFrame
impl UnsafeUnpin for CtfeCallFrame
impl UnwindSafe for CtfeCallFrame
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