pub struct SearchDiagnostics {
pub status: u16,
pub blocked_by_cors: bool,
pub blocked_by_captcha: bool,
pub source_url: String,
pub error: Option<String>,
}Expand description
Structured diagnostics describing how the capture went.
Fields§
§status: u16§blocked_by_cors: bool§blocked_by_captcha: bool§source_url: String§error: Option<String>Trait Implementations§
Source§impl Clone for SearchDiagnostics
impl Clone for SearchDiagnostics
Source§fn clone(&self) -> SearchDiagnostics
fn clone(&self) -> SearchDiagnostics
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 SearchDiagnostics
impl Debug for SearchDiagnostics
Source§impl<'de> Deserialize<'de> for SearchDiagnostics
impl<'de> Deserialize<'de> for SearchDiagnostics
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
Source§impl PartialEq for SearchDiagnostics
impl PartialEq for SearchDiagnostics
Source§fn eq(&self, other: &SearchDiagnostics) -> bool
fn eq(&self, other: &SearchDiagnostics) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SearchDiagnostics
impl Serialize for SearchDiagnostics
impl Eq for SearchDiagnostics
impl StructuralPartialEq for SearchDiagnostics
Auto Trait Implementations§
impl Freeze for SearchDiagnostics
impl RefUnwindSafe for SearchDiagnostics
impl Send for SearchDiagnostics
impl Sync for SearchDiagnostics
impl Unpin for SearchDiagnostics
impl UnsafeUnpin for SearchDiagnostics
impl UnwindSafe for SearchDiagnostics
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.