pub struct IdxAdvice {
pub count: u64,
pub name: Vec<u8>,
pub advice: String,
}Expand description
One Store::idx_advise row: how often the family was refused,
the access path it asked for, and the declaration that serves it.
Fields§
§count: u64Refusals observed for this family.
name: Vec<u8>The access-path name the queries asked for.
advice: StringThe declaration command that would have served them.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IdxAdvice
impl RefUnwindSafe for IdxAdvice
impl Send for IdxAdvice
impl Sync for IdxAdvice
impl Unpin for IdxAdvice
impl UnsafeUnpin for IdxAdvice
impl UnwindSafe for IdxAdvice
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