pub struct ReflectPgCollation {
pub oid: String,
pub collname: String,
pub collnamespace: String,
pub collowner: String,
pub collprovider: i8,
pub collisdeterministic: bool,
pub collencoding: Option<String>,
pub collcollate: Option<String>,
pub collctype: Option<String>,
pub colllocale: Option<String>,
pub collicurules: Option<String>,
pub description: Option<String>,
}Fields§
§oid: String§collname: String§collnamespace: String§collowner: String§collprovider: i8§collisdeterministic: bool§collencoding: Option<String>§collcollate: Option<String>§collctype: Option<String>§colllocale: Option<String>§collicurules: Option<String>§description: Option<String>Trait Implementations§
Source§impl Clone for ReflectPgCollation
impl Clone for ReflectPgCollation
Source§fn clone(&self) -> ReflectPgCollation
fn clone(&self) -> ReflectPgCollation
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 ReflectPgCollation
impl Debug for ReflectPgCollation
Source§impl<'a> From<ReflectPgCollationBorrowed<'a>> for ReflectPgCollation
impl<'a> From<ReflectPgCollationBorrowed<'a>> for ReflectPgCollation
Source§fn from(_: ReflectPgCollationBorrowed<'a>) -> Self
fn from(_: ReflectPgCollationBorrowed<'a>) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReflectPgCollation
impl PartialEq for ReflectPgCollation
impl StructuralPartialEq for ReflectPgCollation
Auto Trait Implementations§
impl Freeze for ReflectPgCollation
impl RefUnwindSafe for ReflectPgCollation
impl Send for ReflectPgCollation
impl Sync for ReflectPgCollation
impl Unpin for ReflectPgCollation
impl UnsafeUnpin for ReflectPgCollation
impl UnwindSafe for ReflectPgCollation
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