pub struct ReflectPgPartitionedTableBorrowed<'a> {
pub partrelid: &'a str,
pub partstrat: i8,
pub partnatts: i16,
pub partdefid: Option<&'a str>,
pub partattrs: ArrayIterator<'a, i16>,
pub partclass: ArrayIterator<'a, &'a str>,
pub partcollation: ArrayIterator<'a, Option<&'a str>>,
pub partexprs: Option<&'a str>,
}Fields§
§partrelid: &'a str§partstrat: i8§partnatts: i16§partdefid: Option<&'a str>§partattrs: ArrayIterator<'a, i16>§partclass: ArrayIterator<'a, &'a str>§partcollation: ArrayIterator<'a, Option<&'a str>>§partexprs: Option<&'a str>Trait Implementations§
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.
Auto Trait Implementations§
impl<'a> Freeze for ReflectPgPartitionedTableBorrowed<'a>
impl<'a> RefUnwindSafe for ReflectPgPartitionedTableBorrowed<'a>
impl<'a> Send for ReflectPgPartitionedTableBorrowed<'a>
impl<'a> Sync for ReflectPgPartitionedTableBorrowed<'a>
impl<'a> Unpin for ReflectPgPartitionedTableBorrowed<'a>
impl<'a> UnsafeUnpin for ReflectPgPartitionedTableBorrowed<'a>
impl<'a> UnwindSafe for ReflectPgPartitionedTableBorrowed<'a>
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