pub struct CtfeLogEntry {
pub func: String,
pub result: String,
pub fuel_used: u64,
pub success: bool,
}Expand description
CTFE result log entry
Fields§
§func: String§result: String§fuel_used: u64§success: boolTrait Implementations§
Source§impl Clone for CtfeLogEntry
impl Clone for CtfeLogEntry
Source§fn clone(&self) -> CtfeLogEntry
fn clone(&self) -> CtfeLogEntry
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 CtfeLogEntry
impl RefUnwindSafe for CtfeLogEntry
impl Send for CtfeLogEntry
impl Sync for CtfeLogEntry
impl Unpin for CtfeLogEntry
impl UnsafeUnpin for CtfeLogEntry
impl UnwindSafe for CtfeLogEntry
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