pub enum ContainerIndex {
Btree {
properties: Vec<String>,
cursorable: Option<bool>,
},
Inverted {
properties: Vec<String>,
},
}Expand description
Index on a container.
Variants§
Trait Implementations§
Source§impl Clone for ContainerIndex
impl Clone for ContainerIndex
Source§fn clone(&self) -> ContainerIndex
fn clone(&self) -> ContainerIndex
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 ContainerIndex
impl Debug for ContainerIndex
Source§impl<'de> Deserialize<'de> for ContainerIndex
impl<'de> Deserialize<'de> for ContainerIndex
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 ContainerIndex
impl RefUnwindSafe for ContainerIndex
impl Send for ContainerIndex
impl Sync for ContainerIndex
impl Unpin for ContainerIndex
impl UnwindSafe for ContainerIndex
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