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