pub struct IdentificationCandidate {
pub input_type: InputType,
pub chain: String,
pub encoding: EncodingType,
pub normalized: String,
pub confidence: f64,
pub reasoning: String,
}Expand description
A candidate identification result
Fields§
§input_type: InputTypeType of input (address or public key)
chain: StringChain identifier (string ID from metadata)
encoding: EncodingTypeEncoding type used
normalized: StringNormalized representation
confidence: f64Confidence score (0.0 to 1.0)
reasoning: StringReasoning for this candidate
Trait Implementations§
Source§impl Clone for IdentificationCandidate
impl Clone for IdentificationCandidate
Source§fn clone(&self) -> IdentificationCandidate
fn clone(&self) -> IdentificationCandidate
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 IdentificationCandidate
impl RefUnwindSafe for IdentificationCandidate
impl Send for IdentificationCandidate
impl Sync for IdentificationCandidate
impl Unpin for IdentificationCandidate
impl UnwindSafe for IdentificationCandidate
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