pub enum ReindexObjectType {
REINDEX_OBJECT_INDEX = 0,
REINDEX_OBJECT_TABLE = 1,
REINDEX_OBJECT_SCHEMA = 2,
REINDEX_OBJECT_SYSTEM = 3,
REINDEX_OBJECT_DATABASE = 4,
}Variants§
REINDEX_OBJECT_INDEX = 0
REINDEX_OBJECT_TABLE = 1
REINDEX_OBJECT_SCHEMA = 2
REINDEX_OBJECT_SYSTEM = 3
REINDEX_OBJECT_DATABASE = 4
Trait Implementations§
Source§impl Clone for ReindexObjectType
impl Clone for ReindexObjectType
Source§fn clone(&self) -> ReindexObjectType
fn clone(&self) -> ReindexObjectType
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 moreimpl Copy for ReindexObjectType
Source§impl Debug for ReindexObjectType
impl Debug for ReindexObjectType
Source§impl<'de> Deserialize<'de> for ReindexObjectType
impl<'de> Deserialize<'de> for ReindexObjectType
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
impl Eq for ReindexObjectType
Source§impl PartialEq for ReindexObjectType
impl PartialEq for ReindexObjectType
Source§fn eq(&self, other: &ReindexObjectType) -> bool
fn eq(&self, other: &ReindexObjectType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReindexObjectType
Auto Trait Implementations§
impl Freeze for ReindexObjectType
impl RefUnwindSafe for ReindexObjectType
impl Send for ReindexObjectType
impl Sync for ReindexObjectType
impl Unpin for ReindexObjectType
impl UnsafeUnpin for ReindexObjectType
impl UnwindSafe for ReindexObjectType
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