pub enum IndexingState {
IndexingStateUnspecified,
IndexingAllowed,
BlockedByMetaTag,
BlockedByHttpHeader,
BlockedByRobotsTxt,
}Expand description
Indexing permission state.
Variants§
IndexingStateUnspecified
Unspecified state.
IndexingAllowed
Indexing is allowed.
BlockedByMetaTag
Blocked by meta tag.
BlockedByHttpHeader
Blocked by HTTP header.
BlockedByRobotsTxt
Blocked by robots.txt.
Trait Implementations§
Source§impl Clone for IndexingState
impl Clone for IndexingState
Source§fn clone(&self) -> IndexingState
fn clone(&self) -> IndexingState
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 moreSource§impl Debug for IndexingState
impl Debug for IndexingState
Source§impl<'de> Deserialize<'de> for IndexingState
impl<'de> Deserialize<'de> for IndexingState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for IndexingState
impl RefUnwindSafe for IndexingState
impl Send for IndexingState
impl Sync for IndexingState
impl Unpin for IndexingState
impl UnsafeUnpin for IndexingState
impl UnwindSafe for IndexingState
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