pub struct PgTsDict {
pub oid: SmolStr,
pub dictname: SmolStr,
pub dictnamespace: SmolStr,
pub dictowner: SmolStr,
pub dictinitoption: Option<SmolStr>,
pub description: Option<SmolStr>,
pub seclabel: Option<SmolStr>,
pub seclabel_provider: Option<SmolStr>,
}Expand description
The DDL-only contents of pg_ts_dict
Fields§
§oid: SmolStroid Row identifier
dictname: SmolStrname Text search dictionary name
dictnamespace: SmolStroid (references pg_namespace.oid) The OID of the namespace that contains this dictionary
dictowner: SmolStroid (references pg_authid.oid) Owner of the dictionary
dictinitoption: Option<SmolStr>text Initialization option string for the template
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<'de> Deserialize<'de> for PgTsDict
impl<'de> Deserialize<'de> for PgTsDict
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PgTsDict, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PgTsDict, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Equivalent<PgTsDict> for SmolStr
impl Equivalent<PgTsDict> for SmolStr
Source§fn equivalent(&self, key: &PgTsDict) -> bool
fn equivalent(&self, key: &PgTsDict) -> bool
Compare self to
key and return true if they are equal.Source§impl Equivalent<PgTsDict> for str
impl Equivalent<PgTsDict> for str
Source§fn equivalent(&self, key: &PgTsDict) -> bool
fn equivalent(&self, key: &PgTsDict) -> bool
Compare self to
key and return true if they are equal.Source§impl Serialize for PgTsDict
impl Serialize for PgTsDict
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 PgTsDict
impl StructuralPartialEq for PgTsDict
Auto Trait Implementations§
impl Freeze for PgTsDict
impl RefUnwindSafe for PgTsDict
impl Send for PgTsDict
impl Sync for PgTsDict
impl Unpin for PgTsDict
impl UnsafeUnpin for PgTsDict
impl UnwindSafe for PgTsDict
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.