pub struct LinkAccounting {
pub to_supported: Vec<String>,
pub to_unsupported: Vec<String>,
pub cycles: Vec<String>,
pub missing: Vec<String>,
}Expand description
How Link identifiers resolve, accounted separately from canonical zones.
Fields§
§to_supported: Vec<String>Links whose canonical zone is compile-supported.
to_unsupported: Vec<String>Links that resolve, but to a canonical zone that is not compile-supported.
cycles: Vec<String>Links whose chain forms a cycle (e.g. B -> A -> B).
missing: Vec<String>Links whose target names neither a zone nor another link.
Trait Implementations§
Source§impl Debug for LinkAccounting
impl Debug for LinkAccounting
Source§impl Default for LinkAccounting
impl Default for LinkAccounting
Source§fn default() -> LinkAccounting
fn default() -> LinkAccounting
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LinkAccounting
impl RefUnwindSafe for LinkAccounting
impl Send for LinkAccounting
impl Sync for LinkAccounting
impl Unpin for LinkAccounting
impl UnsafeUnpin for LinkAccounting
impl UnwindSafe for LinkAccounting
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