pub enum PageIntent {
Informational,
Navigational,
Transactional,
Commercial,
Local,
Unknown,
}Expand description
Page intent labels for search snippets and metadata.
Variants§
Informational
Informational page intent.
Navigational page intent.
Transactional
Transactional page intent.
Commercial
Commercial investigation intent.
Local
Local discovery intent.
Unknown
Unknown or unspecified page intent.
Implementations§
Trait Implementations§
Source§impl Clone for PageIntent
impl Clone for PageIntent
Source§fn clone(&self) -> PageIntent
fn clone(&self) -> PageIntent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PageIntent
impl Debug for PageIntent
Source§impl Hash for PageIntent
impl Hash for PageIntent
Source§impl Ord for PageIntent
impl Ord for PageIntent
Source§fn cmp(&self, other: &PageIntent) -> Ordering
fn cmp(&self, other: &PageIntent) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PageIntent
impl PartialEq for PageIntent
Source§fn eq(&self, other: &PageIntent) -> bool
fn eq(&self, other: &PageIntent) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PageIntent
impl PartialOrd for PageIntent
impl Copy for PageIntent
impl Eq for PageIntent
impl StructuralPartialEq for PageIntent
Auto Trait Implementations§
impl Freeze for PageIntent
impl RefUnwindSafe for PageIntent
impl Send for PageIntent
impl Sync for PageIntent
impl Unpin for PageIntent
impl UnsafeUnpin for PageIntent
impl UnwindSafe for PageIntent
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