pub struct SecurityBlocklistEntry {
pub id: Option<String>,
pub url: String,
pub status: String,
pub threat_level: String,
pub threat_score: f64,
pub categories: Vec<String>,
pub findings_count: i32,
pub hidden_ratio: f64,
pub first_seen: Option<String>,
pub summary: String,
}Expand description
A single blocklist entry.
Fields§
§id: Option<String>Entry identifier.
url: StringBlocked URL.
status: StringRegistry status.
threat_level: StringThreat level.
threat_score: f64Threat score.
categories: Vec<String>Detection categories.
findings_count: i32Number of findings.
Hidden content ratio.
first_seen: Option<String>First seen timestamp.
summary: StringSummary.
Trait Implementations§
Source§impl Clone for SecurityBlocklistEntry
impl Clone for SecurityBlocklistEntry
Source§fn clone(&self) -> SecurityBlocklistEntry
fn clone(&self) -> SecurityBlocklistEntry
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 moreSource§impl Debug for SecurityBlocklistEntry
impl Debug for SecurityBlocklistEntry
Source§impl Default for SecurityBlocklistEntry
impl Default for SecurityBlocklistEntry
Source§fn default() -> SecurityBlocklistEntry
fn default() -> SecurityBlocklistEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecurityBlocklistEntry
impl<'de> Deserialize<'de> for SecurityBlocklistEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SecurityBlocklistEntry
impl RefUnwindSafe for SecurityBlocklistEntry
impl Send for SecurityBlocklistEntry
impl Sync for SecurityBlocklistEntry
impl Unpin for SecurityBlocklistEntry
impl UnsafeUnpin for SecurityBlocklistEntry
impl UnwindSafe for SecurityBlocklistEntry
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