pub struct ContextFnSummary {Show 13 fields
pub name: String,
pub signature: String,
pub description: Option<String>,
pub effects: Vec<String>,
pub qualifiers: Vec<String>,
pub auto_memo: bool,
pub auto_tco: bool,
pub recursive_callsites: usize,
pub verify_count: usize,
pub verify_samples: Vec<String>,
pub is_exposed: bool,
pub specs: Vec<String>,
pub direct_calls: Vec<String>,
}Fields§
§name: String§signature: String§description: Option<String>§effects: Vec<String>§qualifiers: Vec<String>§auto_memo: bool§auto_tco: bool§recursive_callsites: usize§verify_count: usize§verify_samples: Vec<String>§is_exposed: bool§specs: Vec<String>§direct_calls: Vec<String>Trait Implementations§
Source§impl Clone for ContextFnSummary
impl Clone for ContextFnSummary
Source§fn clone(&self) -> ContextFnSummary
fn clone(&self) -> ContextFnSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ContextFnSummary
impl Debug for ContextFnSummary
Auto Trait Implementations§
impl Freeze for ContextFnSummary
impl RefUnwindSafe for ContextFnSummary
impl Send for ContextFnSummary
impl Sync for ContextFnSummary
impl Unpin for ContextFnSummary
impl UnsafeUnpin for ContextFnSummary
impl UnwindSafe for ContextFnSummary
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