pub struct ExtractedUrl {
pub raw: String,
pub parsed: UrlLike,
pub segment_index: usize,
pub in_sink_context: bool,
}Expand description
An extracted URL with context.
Fields§
§raw: String§parsed: UrlLike§segment_index: usize§in_sink_context: boolTrait 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 moreAuto 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