pub struct SecurityBlocklistResponse {
pub entries: Vec<SecurityBlocklistEntry>,
pub count: i32,
pub status: String,
}Expand description
Response from the blocklist feed.
Fields§
§entries: Vec<SecurityBlocklistEntry>Blocklist entries.
count: i32Total count.
status: StringFilter status used.
Trait Implementations§
Source§impl Clone for SecurityBlocklistResponse
impl Clone for SecurityBlocklistResponse
Source§fn clone(&self) -> SecurityBlocklistResponse
fn clone(&self) -> SecurityBlocklistResponse
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 SecurityBlocklistResponse
impl Debug for SecurityBlocklistResponse
Source§impl<'de> Deserialize<'de> for SecurityBlocklistResponse
impl<'de> Deserialize<'de> for SecurityBlocklistResponse
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 SecurityBlocklistResponse
impl RefUnwindSafe for SecurityBlocklistResponse
impl Send for SecurityBlocklistResponse
impl Sync for SecurityBlocklistResponse
impl Unpin for SecurityBlocklistResponse
impl UnsafeUnpin for SecurityBlocklistResponse
impl UnwindSafe for SecurityBlocklistResponse
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