pub struct MapEntry {
pub url: String,
pub score: f64,
pub title: Option<String>,
}Expand description
One ranked URL in a MapResult.
Fields§
§url: StringThe discovered URL.
score: f64Relevance score for the optional search (0 when none).
title: Option<String>Link/anchor title, if any.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MapEntry
impl RefUnwindSafe for MapEntry
impl Send for MapEntry
impl Sync for MapEntry
impl Unpin for MapEntry
impl UnsafeUnpin for MapEntry
impl UnwindSafe for MapEntry
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