pub struct ReflectPgIndex {Show 16 fields
pub indexrelid: String,
pub indrelid: String,
pub indnatts: i16,
pub indnkeyatts: i16,
pub indisunique: bool,
pub indnullsnotdistinct: bool,
pub indisprimary: bool,
pub indisexclusion: bool,
pub indimmediate: bool,
pub indisreplident: bool,
pub indkey: Vec<i16>,
pub indcollation: Vec<Option<String>>,
pub indclass: Vec<String>,
pub indoption: Vec<i16>,
pub indexprs: Option<String>,
pub indpred: Option<String>,
}Fields§
§indexrelid: String§indrelid: String§indnatts: i16§indnkeyatts: i16§indisunique: bool§indnullsnotdistinct: bool§indisprimary: bool§indisexclusion: bool§indimmediate: bool§indisreplident: bool§indkey: Vec<i16>§indcollation: Vec<Option<String>>§indclass: Vec<String>§indoption: Vec<i16>§indexprs: Option<String>§indpred: Option<String>Trait Implementations§
Source§impl Clone for ReflectPgIndex
impl Clone for ReflectPgIndex
Source§fn clone(&self) -> ReflectPgIndex
fn clone(&self) -> ReflectPgIndex
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 ReflectPgIndex
impl Debug for ReflectPgIndex
Source§impl<'a> From<ReflectPgIndexBorrowed<'a>> for ReflectPgIndex
impl<'a> From<ReflectPgIndexBorrowed<'a>> for ReflectPgIndex
Source§fn from(_: ReflectPgIndexBorrowed<'a>) -> Self
fn from(_: ReflectPgIndexBorrowed<'a>) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReflectPgIndex
impl PartialEq for ReflectPgIndex
impl StructuralPartialEq for ReflectPgIndex
Auto Trait Implementations§
impl Freeze for ReflectPgIndex
impl RefUnwindSafe for ReflectPgIndex
impl Send for ReflectPgIndex
impl Sync for ReflectPgIndex
impl Unpin for ReflectPgIndex
impl UnsafeUnpin for ReflectPgIndex
impl UnwindSafe for ReflectPgIndex
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