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 copy 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 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
Source§impl PartialEq for ReindexObjectType
impl PartialEq for ReindexObjectType
impl Copy for ReindexObjectType
impl Eq for ReindexObjectType
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 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