pub struct CallCycle {
pub functions: Vec<String>,
pub length: usize,
}Expand description
A cycle of function calls.
Fields§
§functions: Vec<String>Function names involved in the cycle, in arbitrary order.
length: usizeNumber of distinct functions in the cycle.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CallCycle
impl RefUnwindSafe for CallCycle
impl Send for CallCycle
impl Sync for CallCycle
impl Unpin for CallCycle
impl UnsafeUnpin for CallCycle
impl UnwindSafe for CallCycle
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