pub struct ReflectPgPartitionedTable {
pub partrelid: String,
pub partstrat: i8,
pub partnatts: i16,
pub partdefid: Option<String>,
pub partattrs: Vec<i16>,
pub partclass: Vec<String>,
pub partcollation: Vec<Option<String>>,
pub partexprs: Option<String>,
}Fields§
§partrelid: String§partstrat: i8§partnatts: i16§partdefid: Option<String>§partattrs: Vec<i16>§partclass: Vec<String>§partcollation: Vec<Option<String>>§partexprs: Option<String>Trait Implementations§
Source§impl Clone for ReflectPgPartitionedTable
impl Clone for ReflectPgPartitionedTable
Source§fn clone(&self) -> ReflectPgPartitionedTable
fn clone(&self) -> ReflectPgPartitionedTable
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 ReflectPgPartitionedTable
impl Debug for ReflectPgPartitionedTable
Source§impl<'a> From<ReflectPgPartitionedTableBorrowed<'a>> for ReflectPgPartitionedTable
impl<'a> From<ReflectPgPartitionedTableBorrowed<'a>> for ReflectPgPartitionedTable
Source§fn from(_: ReflectPgPartitionedTableBorrowed<'a>) -> Self
fn from(_: ReflectPgPartitionedTableBorrowed<'a>) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for ReflectPgPartitionedTable
Auto Trait Implementations§
impl Freeze for ReflectPgPartitionedTable
impl RefUnwindSafe for ReflectPgPartitionedTable
impl Send for ReflectPgPartitionedTable
impl Sync for ReflectPgPartitionedTable
impl Unpin for ReflectPgPartitionedTable
impl UnsafeUnpin for ReflectPgPartitionedTable
impl UnwindSafe for ReflectPgPartitionedTable
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