pub struct TrustVerification {
pub url: String,
pub role: TrustRole,
pub trust_score: f64,
}Expand description
Result of a successful trust verification.
Fields§
§url: StringIdentity of the verified agent.
role: TrustRoleIts role in the hierarchy.
trust_score: f64Effective trust score after depth/decay adjustments.
Trait Implementations§
Source§impl Clone for TrustVerification
impl Clone for TrustVerification
Source§fn clone(&self) -> TrustVerification
fn clone(&self) -> TrustVerification
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 moreAuto Trait Implementations§
impl Freeze for TrustVerification
impl RefUnwindSafe for TrustVerification
impl Send for TrustVerification
impl Sync for TrustVerification
impl Unpin for TrustVerification
impl UnsafeUnpin for TrustVerification
impl UnwindSafe for TrustVerification
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