pub struct ResolutionCandidate {
pub content: String,
pub confidence: Confidence,
pub strategy: ResolutionStrategy,
}Expand description
A candidate resolution produced by the resolver pipeline.
Fields§
§content: String§confidence: Confidence§strategy: ResolutionStrategyTrait Implementations§
Source§impl Clone for ResolutionCandidate
impl Clone for ResolutionCandidate
Source§fn clone(&self) -> ResolutionCandidate
fn clone(&self) -> ResolutionCandidate
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ResolutionCandidate
impl RefUnwindSafe for ResolutionCandidate
impl Send for ResolutionCandidate
impl Sync for ResolutionCandidate
impl Unpin for ResolutionCandidate
impl UnwindSafe for ResolutionCandidate
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