pub struct ReflectPgDatabaseBorrowed<'a> {Show 15 fields
pub datname: &'a str,
pub datdba: &'a str,
pub encoding: &'a str,
pub datlocprovider: i8,
pub datistemplate: bool,
pub datallowconn: bool,
pub datconnlimit: Option<i32>,
pub datcollate: Option<&'a str>,
pub datctype: Option<&'a str>,
pub datlocale: Option<&'a str>,
pub daticurules: Option<&'a str>,
pub datacl: Option<ArrayIterator<'a, DbAclitemBorrowed<'a>>>,
pub description: Option<&'a str>,
pub seclabel: Option<&'a str>,
pub seclabel_provider: Option<&'a str>,
}Fields§
§datname: &'a str§datdba: &'a str§encoding: &'a str§datlocprovider: i8§datistemplate: bool§datallowconn: bool§datconnlimit: Option<i32>§datcollate: Option<&'a str>§datctype: Option<&'a str>§datlocale: Option<&'a str>§daticurules: Option<&'a str>§datacl: Option<ArrayIterator<'a, DbAclitemBorrowed<'a>>>§description: Option<&'a str>§seclabel: Option<&'a str>§seclabel_provider: Option<&'a str>Trait Implementations§
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.
Auto Trait Implementations§
impl<'a> Freeze for ReflectPgDatabaseBorrowed<'a>
impl<'a> RefUnwindSafe for ReflectPgDatabaseBorrowed<'a>
impl<'a> Send for ReflectPgDatabaseBorrowed<'a>
impl<'a> Sync for ReflectPgDatabaseBorrowed<'a>
impl<'a> Unpin for ReflectPgDatabaseBorrowed<'a>
impl<'a> UnsafeUnpin for ReflectPgDatabaseBorrowed<'a>
impl<'a> UnwindSafe for ReflectPgDatabaseBorrowed<'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