pub struct UrlCheck {
pub url: String,
pub status: CheckStatus,
pub detail: Option<String>,
pub is_thumbnail: bool,
}Expand description
Result of checking a single URL.
Fields§
§url: String§status: CheckStatus§detail: Option<String>§is_thumbnail: boolWhether this URL is a thumbnail (needs content-type check).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UrlCheck
impl RefUnwindSafe for UrlCheck
impl Send for UrlCheck
impl Sync for UrlCheck
impl Unpin for UrlCheck
impl UnsafeUnpin for UrlCheck
impl UnwindSafe for UrlCheck
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