pub struct ReflectPgDatabase {Show 15 fields
pub datname: String,
pub datdba: String,
pub encoding: String,
pub datlocprovider: i8,
pub datistemplate: bool,
pub datallowconn: bool,
pub datconnlimit: Option<i32>,
pub datcollate: Option<String>,
pub datctype: Option<String>,
pub datlocale: Option<String>,
pub daticurules: Option<String>,
pub datacl: Option<Vec<DbAclitem>>,
pub description: Option<String>,
pub seclabel: Option<String>,
pub seclabel_provider: Option<String>,
}Fields§
§datname: String§datdba: String§encoding: String§datlocprovider: i8§datistemplate: bool§datallowconn: bool§datconnlimit: Option<i32>§datcollate: Option<String>§datctype: Option<String>§datlocale: Option<String>§daticurules: Option<String>§datacl: Option<Vec<DbAclitem>>§description: Option<String>§seclabel: Option<String>§seclabel_provider: Option<String>Trait Implementations§
Source§impl Clone for ReflectPgDatabase
impl Clone for ReflectPgDatabase
Source§fn clone(&self) -> ReflectPgDatabase
fn clone(&self) -> ReflectPgDatabase
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 ReflectPgDatabase
impl Debug for ReflectPgDatabase
Source§impl<'a> From<ReflectPgDatabaseBorrowed<'a>> for ReflectPgDatabase
impl<'a> From<ReflectPgDatabaseBorrowed<'a>> for ReflectPgDatabase
Source§fn from(_: ReflectPgDatabaseBorrowed<'a>) -> Self
fn from(_: ReflectPgDatabaseBorrowed<'a>) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReflectPgDatabase
impl PartialEq for ReflectPgDatabase
impl StructuralPartialEq for ReflectPgDatabase
Auto Trait Implementations§
impl Freeze for ReflectPgDatabase
impl RefUnwindSafe for ReflectPgDatabase
impl Send for ReflectPgDatabase
impl Sync for ReflectPgDatabase
impl Unpin for ReflectPgDatabase
impl UnsafeUnpin for ReflectPgDatabase
impl UnwindSafe for ReflectPgDatabase
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