#[non_exhaustive]pub struct CallTreeSnapshot {
pub roots: Vec<NodeSnapshot>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.roots: Vec<NodeSnapshot>Implementations§
Trait Implementations§
Source§impl Clone for CallTreeSnapshot
impl Clone for CallTreeSnapshot
Source§fn clone(&self) -> CallTreeSnapshot
fn clone(&self) -> CallTreeSnapshot
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 CallTreeSnapshot
impl Debug for CallTreeSnapshot
Source§impl Default for CallTreeSnapshot
impl Default for CallTreeSnapshot
Source§fn default() -> CallTreeSnapshot
fn default() -> CallTreeSnapshot
Returns the “default value” for a type. Read more
Source§impl Display for CallTreeSnapshot
impl Display for CallTreeSnapshot
impl Eq for CallTreeSnapshot
Source§impl PartialEq for CallTreeSnapshot
impl PartialEq for CallTreeSnapshot
Source§impl Serialize for CallTreeSnapshot
impl Serialize for CallTreeSnapshot
impl StructuralPartialEq for CallTreeSnapshot
Auto Trait Implementations§
impl Freeze for CallTreeSnapshot
impl RefUnwindSafe for CallTreeSnapshot
impl Send for CallTreeSnapshot
impl Sync for CallTreeSnapshot
impl Unpin for CallTreeSnapshot
impl UnsafeUnpin for CallTreeSnapshot
impl UnwindSafe for CallTreeSnapshot
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