pub struct TextSearchDictionary(/* private fields */);Expand description
A PostgreSQL text search dictionary name.
Implementations§
Source§impl TextSearchDictionary
impl TextSearchDictionary
Sourcepub const fn from_static_or_panic(input: &'static str) -> Self
pub const fn from_static_or_panic(input: &'static str) -> Self
Creates a new value from a static string.
§Panics
Panics if the input is empty, exceeds MAX_LENGTH, or contains NUL bytes.
Trait Implementations§
Source§impl AsRef<str> for TextSearchDictionary
impl AsRef<str> for TextSearchDictionary
Source§impl Clone for TextSearchDictionary
impl Clone for TextSearchDictionary
Source§fn clone(&self) -> TextSearchDictionary
fn clone(&self) -> TextSearchDictionary
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 TextSearchDictionary
impl Debug for TextSearchDictionary
Source§impl<'de> Deserialize<'de> for TextSearchDictionary
impl<'de> Deserialize<'de> for TextSearchDictionary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for TextSearchDictionary
impl Display for TextSearchDictionary
Source§impl FromStr for TextSearchDictionary
impl FromStr for TextSearchDictionary
Source§impl Ord for TextSearchDictionary
impl Ord for TextSearchDictionary
Source§fn cmp(&self, other: &TextSearchDictionary) -> Ordering
fn cmp(&self, other: &TextSearchDictionary) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TextSearchDictionary
impl PartialEq for TextSearchDictionary
Source§impl PartialOrd for TextSearchDictionary
impl PartialOrd for TextSearchDictionary
Source§impl Serialize for TextSearchDictionary
impl Serialize for TextSearchDictionary
Source§impl TryFrom<String> for TextSearchDictionary
impl TryFrom<String> for TextSearchDictionary
impl Eq for TextSearchDictionary
impl StructuralPartialEq for TextSearchDictionary
Auto Trait Implementations§
impl Freeze for TextSearchDictionary
impl RefUnwindSafe for TextSearchDictionary
impl Send for TextSearchDictionary
impl Sync for TextSearchDictionary
impl Unpin for TextSearchDictionary
impl UnsafeUnpin for TextSearchDictionary
impl UnwindSafe for TextSearchDictionary
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