pub struct SecurityReportResponse {
pub url: String,
pub status: String,
pub message: String,
pub threat_level: Option<String>,
}Expand description
Response from reporting a URL.
Fields§
§url: StringURL that was reported.
status: StringReport status: “existing” or “suspected”.
message: StringMessage.
threat_level: Option<String>Threat level (if already in registry).
Trait Implementations§
Source§impl Clone for SecurityReportResponse
impl Clone for SecurityReportResponse
Source§fn clone(&self) -> SecurityReportResponse
fn clone(&self) -> SecurityReportResponse
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 SecurityReportResponse
impl Debug for SecurityReportResponse
Source§impl<'de> Deserialize<'de> for SecurityReportResponse
impl<'de> Deserialize<'de> for SecurityReportResponse
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 SecurityReportResponse
impl RefUnwindSafe for SecurityReportResponse
impl Send for SecurityReportResponse
impl Sync for SecurityReportResponse
impl Unpin for SecurityReportResponse
impl UnsafeUnpin for SecurityReportResponse
impl UnwindSafe for SecurityReportResponse
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