pub struct CtfeCodeStats {
pub constants_discovered: usize,
pub folds_applied: usize,
pub calls_eliminated: usize,
pub loops_unrolled: usize,
pub conditions_resolved: usize,
}Expand description
CTFE code stats
Fields§
§constants_discovered: usize§folds_applied: usize§calls_eliminated: usize§loops_unrolled: usize§conditions_resolved: usizeTrait Implementations§
Source§impl Clone for CtfeCodeStats
impl Clone for CtfeCodeStats
Source§fn clone(&self) -> CtfeCodeStats
fn clone(&self) -> CtfeCodeStats
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 CtfeCodeStats
impl Debug for CtfeCodeStats
Source§impl Default for CtfeCodeStats
impl Default for CtfeCodeStats
Source§fn default() -> CtfeCodeStats
fn default() -> CtfeCodeStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CtfeCodeStats
impl RefUnwindSafe for CtfeCodeStats
impl Send for CtfeCodeStats
impl Sync for CtfeCodeStats
impl Unpin for CtfeCodeStats
impl UnsafeUnpin for CtfeCodeStats
impl UnwindSafe for CtfeCodeStats
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