pub struct ViewDef {
pub schema: String,
pub name: String,
pub definition: String,
pub is_materialized: bool,
}Expand description
Definition of a database view.
Fields§
§schema: StringSchema the view belongs to.
name: StringName of the view.
definition: StringSQL definition body of the view.
is_materialized: boolWhether this is a materialized view.
Trait Implementations§
impl StructuralPartialEq for ViewDef
Auto Trait Implementations§
impl Freeze for ViewDef
impl RefUnwindSafe for ViewDef
impl Send for ViewDef
impl Sync for ViewDef
impl Unpin for ViewDef
impl UnsafeUnpin for ViewDef
impl UnwindSafe for ViewDef
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