pub struct Candidate<T> {
pub node: T,
pub tokens: Vec<IdentityToken>,
}Expand description
One participant in a coverage query: an opaque node handle plus its ordered identity tokens.
Fields§
§node: T§tokens: Vec<IdentityToken>Auto Trait Implementations§
impl<T> Freeze for Candidate<T>where
T: Freeze,
impl<T> RefUnwindSafe for Candidate<T>where
T: RefUnwindSafe,
impl<T> Send for Candidate<T>where
T: Send,
impl<T> Sync for Candidate<T>where
T: Sync,
impl<T> Unpin for Candidate<T>where
T: Unpin,
impl<T> UnsafeUnpin for Candidate<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for Candidate<T>where
T: UnwindSafe,
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