pub struct PgTsConfig {
pub oid: SmolStr,
pub cfgname: SmolStr,
pub cfgnamespace: SmolStr,
pub cfgowner: SmolStr,
pub description: Option<SmolStr>,
pub seclabel: Option<SmolStr>,
pub seclabel_provider: Option<SmolStr>,
}Expand description
The DDL-only contents of pg_ts_config
Fields§
§oid: SmolStroid Row identifier
cfgname: SmolStrname Text search configuration name
cfgnamespace: SmolStroid (references pg_namespace.oid) The OID of the namespace that contains this configuration
cfgowner: SmolStroid (references pg_authid.oid) Owner of the configuration
description: Option<SmolStr>text The comment from pg_description
seclabel: Option<SmolStr>text The seclabel from pg_seclabel
seclabel_provider: Option<SmolStr>text The provider from pg_seclabel
Trait Implementations§
Source§impl Clone for PgTsConfig
impl Clone for PgTsConfig
Source§fn clone(&self) -> PgTsConfig
fn clone(&self) -> PgTsConfig
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 PgTsConfig
impl Debug for PgTsConfig
Source§impl<'de> Deserialize<'de> for PgTsConfig
impl<'de> Deserialize<'de> for PgTsConfig
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PgTsConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PgTsConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Equivalent<PgTsConfig> for SmolStr
impl Equivalent<PgTsConfig> for SmolStr
Source§fn equivalent(&self, key: &PgTsConfig) -> bool
fn equivalent(&self, key: &PgTsConfig) -> bool
Compare self to
key and return true if they are equal.Source§impl Equivalent<PgTsConfig> for str
impl Equivalent<PgTsConfig> for str
Source§fn equivalent(&self, key: &PgTsConfig) -> bool
fn equivalent(&self, key: &PgTsConfig) -> bool
Compare self to
key and return true if they are equal.Source§impl Hash for PgTsConfig
impl Hash for PgTsConfig
Source§impl PartialEq for PgTsConfig
impl PartialEq for PgTsConfig
Source§impl Serialize for PgTsConfig
impl Serialize for PgTsConfig
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for PgTsConfig
impl StructuralPartialEq for PgTsConfig
Auto Trait Implementations§
impl Freeze for PgTsConfig
impl RefUnwindSafe for PgTsConfig
impl Send for PgTsConfig
impl Sync for PgTsConfig
impl Unpin for PgTsConfig
impl UnsafeUnpin for PgTsConfig
impl UnwindSafe for PgTsConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.