Skip to main content

RefreshMaterializedView

Struct RefreshMaterializedView 

Source
pub struct RefreshMaterializedView<'a, State = RefreshInitial> { /* private fields */ }
Expand description

Builder for REFRESH MATERIALIZED VIEW statements

PostgreSQL syntax:

REFRESH MATERIALIZED VIEW [ CONCURRENTLY ] view_name [ WITH [ NO ] DATA ]

Note: CONCURRENTLY and WITH NO DATA are mutually exclusive in PostgreSQL. CONCURRENTLY requires the materialized view to have a unique index.

Implementations§

Source§

impl<'a> RefreshMaterializedView<'a, RefreshInitial>

Source

pub fn new<V: SQLViewInfo>(view: &'a V) -> Self

Creates a new REFRESH MATERIALIZED VIEW builder for the given view

Source

pub fn concurrently(self) -> RefreshMaterializedView<'a, RefreshConcurrently>

Adds the CONCURRENTLY option

This allows the view to be refreshed without locking out concurrent reads. Requires the materialized view to have at least one unique index.

Note: Cannot be combined with WITH NO DATA.

Source

pub fn with_no_data(self) -> RefreshMaterializedView<'a, RefreshWithNoData>

Adds the WITH NO DATA option

This causes the materialized view to be emptied rather than refreshed with data. The view cannot be queried until data is added with a subsequent REFRESH.

Note: Cannot be combined with CONCURRENTLY.

Source

pub fn with_data(self) -> Self

Adds the WITH DATA option (explicit, but this is the default behavior)

Trait Implementations§

Source§

impl<'a, State: Clone> Clone for RefreshMaterializedView<'a, State>

Source§

fn clone(&self) -> RefreshMaterializedView<'a, State>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a, State: Debug> Debug for RefreshMaterializedView<'a, State>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a, State> ToSQL<'a, PostgresValue<'a>> for RefreshMaterializedView<'a, State>

Source§

fn to_sql(&self) -> SQL<'a, PostgresValue<'a>>

Source§

fn into_sql(self) -> SQL<'a, V>
where Self: Sized,

Consume self and return SQL without cloning. Default delegates to to_sql() (which clones). Types that own their SQL (like SQL and SQLExpr) override this to avoid the clone.
Source§

fn alias(&self, alias: &'static str) -> SQL<'a, V>

Auto Trait Implementations§

§

impl<'a, State> Freeze for RefreshMaterializedView<'a, State>

§

impl<'a, State = RefreshInitial> !RefUnwindSafe for RefreshMaterializedView<'a, State>

§

impl<'a, State> Send for RefreshMaterializedView<'a, State>
where State: Send,

§

impl<'a, State> Sync for RefreshMaterializedView<'a, State>
where State: Sync,

§

impl<'a, State> Unpin for RefreshMaterializedView<'a, State>
where State: Unpin,

§

impl<'a, State = RefreshInitial> !UnwindSafe for RefreshMaterializedView<'a, State>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.