pub struct CycleInfo {
pub types: Vec<String>,
pub path: String,
pub is_self_reference: bool,
}Expand description
Information about a detected cycle
Fields§
§types: Vec<String>Types involved in the cycle
path: StringHuman-readable path string
is_self_reference: boolWhether this is a self-reference
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CycleInfo
impl RefUnwindSafe for CycleInfo
impl Send for CycleInfo
impl Sync for CycleInfo
impl Unpin for CycleInfo
impl UnwindSafe for CycleInfo
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