#[non_exhaustive]pub struct SearchUrisResponse {
pub threat: Option<ThreatUri>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.threat: Option<ThreatUri>The threat list matches. This might be empty if the URI is on no list.
Implementations§
Trait Implementations§
Source§impl Clone for SearchUrisResponse
impl Clone for SearchUrisResponse
Source§fn clone(&self) -> SearchUrisResponse
fn clone(&self) -> SearchUrisResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 SearchUrisResponse
impl Debug for SearchUrisResponse
Source§impl Default for SearchUrisResponse
impl Default for SearchUrisResponse
Source§fn default() -> SearchUrisResponse
fn default() -> SearchUrisResponse
Returns the “default value” for a type. Read more
Source§impl Message for SearchUrisResponse
impl Message for SearchUrisResponse
Source§impl PartialEq for SearchUrisResponse
impl PartialEq for SearchUrisResponse
impl StructuralPartialEq for SearchUrisResponse
Auto Trait Implementations§
impl Freeze for SearchUrisResponse
impl RefUnwindSafe for SearchUrisResponse
impl Send for SearchUrisResponse
impl Sync for SearchUrisResponse
impl Unpin for SearchUrisResponse
impl UnwindSafe for SearchUrisResponse
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