pub struct MapResult {
pub url: String,
pub host: Option<String>,
pub urls: Vec<MapEntry>,
pub counts: MapCounts,
pub tier: CloudTier,
pub quota: Option<KeylessQuota>,
}Expand description
A site’s URLs, ranked by an optional search (CloudClient::map).
Fields§
§url: StringThe mapped seed URL.
host: Option<String>The resolved host, if the server reported it.
urls: Vec<MapEntry>Ranked URLs.
counts: MapCountsReturned / total counts.
tier: CloudTierThe tier this call resolved to.
quota: Option<KeylessQuota>Present on the keyless tier only — remaining daily allowance.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MapResult
impl RefUnwindSafe for MapResult
impl Send for MapResult
impl Sync for MapResult
impl Unpin for MapResult
impl UnsafeUnpin for MapResult
impl UnwindSafe for MapResult
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