pub struct MaterializedView(/* private fields */);Expand description
A PostgreSQL materialized view name.
Implementations§
Source§impl MaterializedView
impl MaterializedView
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 MaterializedView
impl AsRef<str> for MaterializedView
Source§impl Clone for MaterializedView
impl Clone for MaterializedView
Source§fn clone(&self) -> MaterializedView
fn clone(&self) -> MaterializedView
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 MaterializedView
impl Debug for MaterializedView
Source§impl<'de> Deserialize<'de> for MaterializedView
impl<'de> Deserialize<'de> for MaterializedView
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 MaterializedView
impl Display for MaterializedView
Source§impl From<MaterializedView> for Relation
impl From<MaterializedView> for Relation
Source§fn from(materialized_view: MaterializedView) -> Self
fn from(materialized_view: MaterializedView) -> Self
Converts to this type from the input type.
Source§impl FromStr for MaterializedView
impl FromStr for MaterializedView
Source§impl Ord for MaterializedView
impl Ord for MaterializedView
Source§fn cmp(&self, other: &MaterializedView) -> Ordering
fn cmp(&self, other: &MaterializedView) -> 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 MaterializedView
impl PartialEq for MaterializedView
Source§impl PartialOrd for MaterializedView
impl PartialOrd for MaterializedView
Source§impl Serialize for MaterializedView
impl Serialize for MaterializedView
Source§impl TryFrom<String> for MaterializedView
impl TryFrom<String> for MaterializedView
impl Eq for MaterializedView
impl StructuralPartialEq for MaterializedView
Auto Trait Implementations§
impl Freeze for MaterializedView
impl RefUnwindSafe for MaterializedView
impl Send for MaterializedView
impl Sync for MaterializedView
impl Unpin for MaterializedView
impl UnsafeUnpin for MaterializedView
impl UnwindSafe for MaterializedView
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