pub struct CrossRef {
pub match: String,
pub url: String,
pub is_valid: bool,
pub is_live: bool,
pub timestamp: String,
pub is_way_back_link: bool,
pub order: u32,
}Expand description
Cross Reference.
Fields§
§match: StringThe match.
url: StringThe URL.
is_valid: boolWhether or not the URL is valid.
is_live: boolWhether or not the URL is live.
timestamp: StringThe timestamp.
is_way_back_link: boolWhether or not the URL is a wayback link.
order: u32The order.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CrossRef
impl<'de> Deserialize<'de> for CrossRef
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
impl StructuralPartialEq for CrossRef
Auto Trait Implementations§
impl Freeze for CrossRef
impl RefUnwindSafe for CrossRef
impl Send for CrossRef
impl Sync for CrossRef
impl Unpin for CrossRef
impl UnwindSafe for CrossRef
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