pub struct JsonPage {Show 13 fields
pub id: String,
pub url: String,
pub final_url: String,
pub status_code: u16,
pub title: Option<String>,
pub description: Option<String>,
pub canonical: Option<String>,
pub word_count: Option<usize>,
pub load_time_ms: Option<u64>,
pub body_size: Option<usize>,
pub fetched_at: String,
pub issues: Vec<JsonIssue>,
pub links: Vec<String>,
}Fields§
§id: String§url: String§final_url: String§status_code: u16§title: Option<String>§description: Option<String>§canonical: Option<String>§word_count: Option<usize>§load_time_ms: Option<u64>§body_size: Option<usize>§fetched_at: String§issues: Vec<JsonIssue>§links: Vec<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for JsonPage
impl RefUnwindSafe for JsonPage
impl Send for JsonPage
impl Sync for JsonPage
impl Unpin for JsonPage
impl UnsafeUnpin for JsonPage
impl UnwindSafe for JsonPage
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more