pub struct ExtractedUrl {
pub url: String,
pub domain: String,
pub is_tracking: bool,
pub url_type: UrlType,
}Expand description
Extracted URL with analysis
Fields§
§url: String§domain: String§is_tracking: bool§url_type: UrlTypeTrait Implementations§
Source§impl Clone for ExtractedUrl
impl Clone for ExtractedUrl
Source§fn clone(&self) -> ExtractedUrl
fn clone(&self) -> ExtractedUrl
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 ExtractedUrl
impl Debug for ExtractedUrl
Source§impl<'de> Deserialize<'de> for ExtractedUrl
impl<'de> Deserialize<'de> for ExtractedUrl
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
Auto Trait Implementations§
impl Freeze for ExtractedUrl
impl RefUnwindSafe for ExtractedUrl
impl Send for ExtractedUrl
impl Sync for ExtractedUrl
impl Unpin for ExtractedUrl
impl UnwindSafe for ExtractedUrl
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