pub enum IndexingStatusEnum {
Http2xx,
Http3xx,
Http4xx,
Http5xx,
Other,
}Expand description
Indexing status by HTTP code
Variants§
Http2xx
HTTP 2xx responses
Http3xx
HTTP 3xx responses
Http4xx
HTTP 4xx responses
Http5xx
HTTP 5xx responses
Other
Other statuses
Trait Implementations§
Source§impl Clone for IndexingStatusEnum
impl Clone for IndexingStatusEnum
Source§fn clone(&self) -> IndexingStatusEnum
fn clone(&self) -> IndexingStatusEnum
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IndexingStatusEnum
impl Debug for IndexingStatusEnum
Source§impl<'de> Deserialize<'de> for IndexingStatusEnum
impl<'de> Deserialize<'de> for IndexingStatusEnum
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
Source§impl Hash for IndexingStatusEnum
impl Hash for IndexingStatusEnum
Source§impl PartialEq for IndexingStatusEnum
impl PartialEq for IndexingStatusEnum
Source§impl Serialize for IndexingStatusEnum
impl Serialize for IndexingStatusEnum
impl Copy for IndexingStatusEnum
impl Eq for IndexingStatusEnum
impl StructuralPartialEq for IndexingStatusEnum
Auto Trait Implementations§
impl Freeze for IndexingStatusEnum
impl RefUnwindSafe for IndexingStatusEnum
impl Send for IndexingStatusEnum
impl Sync for IndexingStatusEnum
impl Unpin for IndexingStatusEnum
impl UnwindSafe for IndexingStatusEnum
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.