pub struct Matview {
pub id: Option<String>,
pub query_id: Option<i64>,
pub sql_id: Option<String>,
pub is_private: Option<bool>,
pub table_size_bytes: Option<i64>,
}Expand description
Materialized view
Fields§
§id: Option<String>View ID (fully qualified name)
query_id: Option<i64>Query ID
sql_id: Option<String>SQL ID
is_private: Option<bool>Whether the view is private
table_size_bytes: Option<i64>Table size in bytes
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Matview
impl<'de> Deserialize<'de> for Matview
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
Auto Trait Implementations§
impl Freeze for Matview
impl RefUnwindSafe for Matview
impl Send for Matview
impl Sync for Matview
impl Unpin for Matview
impl UnwindSafe for Matview
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