pub struct OperatorFamily(/* private fields */);Expand description
A PostgreSQL operator family name.
Implementations§
Source§impl OperatorFamily
impl OperatorFamily
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 OperatorFamily
impl AsRef<str> for OperatorFamily
Source§impl Clone for OperatorFamily
impl Clone for OperatorFamily
Source§fn clone(&self) -> OperatorFamily
fn clone(&self) -> OperatorFamily
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 OperatorFamily
impl Debug for OperatorFamily
Source§impl<'de> Deserialize<'de> for OperatorFamily
impl<'de> Deserialize<'de> for OperatorFamily
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 OperatorFamily
impl Display for OperatorFamily
Source§impl FromStr for OperatorFamily
impl FromStr for OperatorFamily
Source§impl Ord for OperatorFamily
impl Ord for OperatorFamily
Source§fn cmp(&self, other: &OperatorFamily) -> Ordering
fn cmp(&self, other: &OperatorFamily) -> 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 OperatorFamily
impl PartialEq for OperatorFamily
Source§impl PartialOrd for OperatorFamily
impl PartialOrd for OperatorFamily
Source§impl Serialize for OperatorFamily
impl Serialize for OperatorFamily
Source§impl TryFrom<String> for OperatorFamily
impl TryFrom<String> for OperatorFamily
impl Eq for OperatorFamily
impl StructuralPartialEq for OperatorFamily
Auto Trait Implementations§
impl Freeze for OperatorFamily
impl RefUnwindSafe for OperatorFamily
impl Send for OperatorFamily
impl Sync for OperatorFamily
impl Unpin for OperatorFamily
impl UnsafeUnpin for OperatorFamily
impl UnwindSafe for OperatorFamily
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