pub struct CycleError {
pub types: Vec<String>,
pub path: String,
}Expand description
Information about a circular dependency
Fields§
§types: Vec<String>Types involved in the cycle
path: StringHuman-readable path
Trait Implementations§
Source§impl Debug for CycleError
impl Debug for CycleError
Auto Trait Implementations§
impl Freeze for CycleError
impl RefUnwindSafe for CycleError
impl Send for CycleError
impl Sync for CycleError
impl Unpin for CycleError
impl UnwindSafe for CycleError
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