pub struct CatalogCheck {
pub statuses: Vec<(String, ToolStatus)>,
pub removed: Vec<String>,
pub first_contact: bool,
}Fields§
§statuses: Vec<(String, ToolStatus)>Per-tool status, in catalog order.
removed: Vec<String>Tools that were pinned but vanished from the live catalog.
first_contact: boolTrue when this is the first time we’ve seen this server (no pin file existed) – everything was pinned TOFU-style.
Implementations§
Trait Implementations§
Source§impl Debug for CatalogCheck
impl Debug for CatalogCheck
Source§impl Default for CatalogCheck
impl Default for CatalogCheck
Source§fn default() -> CatalogCheck
fn default() -> CatalogCheck
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CatalogCheck
impl RefUnwindSafe for CatalogCheck
impl Send for CatalogCheck
impl Sync for CatalogCheck
impl Unpin for CatalogCheck
impl UnsafeUnpin for CatalogCheck
impl UnwindSafe for CatalogCheck
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