pub struct CtfeTraceEntry {
pub depth: usize,
pub func: String,
pub args_repr: String,
pub result_repr: Option<String>,
}Expand description
CTFE evaluation trace entry
Fields§
§depth: usize§func: String§args_repr: String§result_repr: Option<String>Trait Implementations§
Source§impl Clone for CtfeTraceEntry
impl Clone for CtfeTraceEntry
Source§fn clone(&self) -> CtfeTraceEntry
fn clone(&self) -> CtfeTraceEntry
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 moreSource§impl Debug for CtfeTraceEntry
impl Debug for CtfeTraceEntry
Auto Trait Implementations§
impl Freeze for CtfeTraceEntry
impl RefUnwindSafe for CtfeTraceEntry
impl Send for CtfeTraceEntry
impl Sync for CtfeTraceEntry
impl Unpin for CtfeTraceEntry
impl UnsafeUnpin for CtfeTraceEntry
impl UnwindSafe for CtfeTraceEntry
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