pub struct CtfeFuncEntry {
pub name: String,
pub params: Vec<String>,
pub body: String,
pub is_recursive: bool,
pub is_pure: bool,
pub call_count: u64,
}Expand description
CTFE function table entry
Fields§
§name: String§params: Vec<String>§body: String§is_recursive: bool§is_pure: bool§call_count: u64Trait Implementations§
Source§impl Clone for CtfeFuncEntry
impl Clone for CtfeFuncEntry
Source§fn clone(&self) -> CtfeFuncEntry
fn clone(&self) -> CtfeFuncEntry
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 CtfeFuncEntry
impl RefUnwindSafe for CtfeFuncEntry
impl Send for CtfeFuncEntry
impl Sync for CtfeFuncEntry
impl Unpin for CtfeFuncEntry
impl UnsafeUnpin for CtfeFuncEntry
impl UnwindSafe for CtfeFuncEntry
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