pub struct DependentHit {
pub key: String,
pub value: String,
pub dep_type: String,
pub depth: usize,
}Fields§
§key: String§value: String§dep_type: String§depth: usizeHop distance from the queried key (1 = direct dependent).
Trait Implementations§
Source§impl Clone for DependentHit
impl Clone for DependentHit
Source§fn clone(&self) -> DependentHit
fn clone(&self) -> DependentHit
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DependentHit
impl Debug for DependentHit
Auto Trait Implementations§
impl Freeze for DependentHit
impl RefUnwindSafe for DependentHit
impl Send for DependentHit
impl Sync for DependentHit
impl Unpin for DependentHit
impl UnsafeUnpin for DependentHit
impl UnwindSafe for DependentHit
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