pub struct SecondaryIndex {
pub name: String,
pub column_indices: Vec<usize>,
pub root_page_id: u32,
pub unique: bool,
}Fields§
§name: String§column_indices: Vec<usize>§root_page_id: u32§unique: boolTrait Implementations§
Source§impl Clone for SecondaryIndex
impl Clone for SecondaryIndex
Source§fn clone(&self) -> SecondaryIndex
fn clone(&self) -> SecondaryIndex
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 SecondaryIndex
impl Debug for SecondaryIndex
Source§impl PartialEq for SecondaryIndex
impl PartialEq for SecondaryIndex
impl Eq for SecondaryIndex
impl StructuralPartialEq for SecondaryIndex
Auto Trait Implementations§
impl Freeze for SecondaryIndex
impl RefUnwindSafe for SecondaryIndex
impl Send for SecondaryIndex
impl Sync for SecondaryIndex
impl Unpin for SecondaryIndex
impl UnsafeUnpin for SecondaryIndex
impl UnwindSafe for SecondaryIndex
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