pub enum NotCheckedReason {
NoMatch,
NotUserlandApp,
NoUserAgent,
Dishonest,
UaNotInTable,
NoSource,
NoObservedOs,
}Available on crate feature
http-p0f-request only.Expand description
Why check_ua_os_agreement did not emit Consistent/Divergent.
Order matches p0f score_nat: earlier gates win. A standalone caller
without a provider still sees HTTP-side reasons; Self::NoSource
only appears when the check would have compared OS names.
Variants§
Trait Implementations§
Source§impl Clone for NotCheckedReason
impl Clone for NotCheckedReason
Source§fn clone(&self) -> NotCheckedReason
fn clone(&self) -> NotCheckedReason
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 moreimpl Copy for NotCheckedReason
Source§impl Debug for NotCheckedReason
impl Debug for NotCheckedReason
Source§impl Display for NotCheckedReason
impl Display for NotCheckedReason
impl Eq for NotCheckedReason
Source§impl PartialEq for NotCheckedReason
impl PartialEq for NotCheckedReason
Source§impl Serialize for NotCheckedReason
impl Serialize for NotCheckedReason
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for NotCheckedReason
Auto Trait Implementations§
impl Freeze for NotCheckedReason
impl RefUnwindSafe for NotCheckedReason
impl Send for NotCheckedReason
impl Sync for NotCheckedReason
impl Unpin for NotCheckedReason
impl UnsafeUnpin for NotCheckedReason
impl UnwindSafe for NotCheckedReason
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