pub struct UrlMatch {
pub query: CellQuery,
pub url: CompactString,
}Expand description
Result of URL detection containing the query and extracted URL text.
Fields§
§query: CellQueryA CellQuery configured with the URL’s start and end positions.
url: CompactStringThe extracted URL string.
Auto Trait Implementations§
impl Freeze for UrlMatch
impl RefUnwindSafe for UrlMatch
impl Send for UrlMatch
impl Sync for UrlMatch
impl Unpin for UrlMatch
impl UnsafeUnpin for UrlMatch
impl UnwindSafe for UrlMatch
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