pub struct ReflectPgLanguage {Show 13 fields
pub lanname: String,
pub lanowner: String,
pub lanispl: bool,
pub lanpltrusted: bool,
pub lanplcallfoid: Option<String>,
pub laninline: Option<String>,
pub lanvalidator: Option<String>,
pub lanacl: Option<Vec<LanguageAclitem>>,
pub description: Option<String>,
pub seclabel: Option<String>,
pub seclabel_provider: Option<String>,
pub initprivs: Option<Vec<LanguageAclitem>>,
pub initprivs_type: Option<i8>,
}Fields§
§lanname: String§lanowner: String§lanispl: bool§lanpltrusted: bool§lanplcallfoid: Option<String>§laninline: Option<String>§lanvalidator: Option<String>§lanacl: Option<Vec<LanguageAclitem>>§description: Option<String>§seclabel: Option<String>§seclabel_provider: Option<String>§initprivs: Option<Vec<LanguageAclitem>>§initprivs_type: Option<i8>Trait Implementations§
Source§impl Clone for ReflectPgLanguage
impl Clone for ReflectPgLanguage
Source§fn clone(&self) -> ReflectPgLanguage
fn clone(&self) -> ReflectPgLanguage
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 ReflectPgLanguage
impl Debug for ReflectPgLanguage
Source§impl<'a> From<ReflectPgLanguageBorrowed<'a>> for ReflectPgLanguage
impl<'a> From<ReflectPgLanguageBorrowed<'a>> for ReflectPgLanguage
Source§fn from(_: ReflectPgLanguageBorrowed<'a>) -> Self
fn from(_: ReflectPgLanguageBorrowed<'a>) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReflectPgLanguage
impl PartialEq for ReflectPgLanguage
impl StructuralPartialEq for ReflectPgLanguage
Auto Trait Implementations§
impl Freeze for ReflectPgLanguage
impl RefUnwindSafe for ReflectPgLanguage
impl Send for ReflectPgLanguage
impl Sync for ReflectPgLanguage
impl Unpin for ReflectPgLanguage
impl UnsafeUnpin for ReflectPgLanguage
impl UnwindSafe for ReflectPgLanguage
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