pub enum NuxtRenderingMode {
Ssr,
Spa,
Static,
Hybrid,
}Expand description
Nuxt rendering mode labels.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for NuxtRenderingMode
impl Clone for NuxtRenderingMode
Source§fn clone(&self) -> NuxtRenderingMode
fn clone(&self) -> NuxtRenderingMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NuxtRenderingMode
impl Debug for NuxtRenderingMode
Source§impl Hash for NuxtRenderingMode
impl Hash for NuxtRenderingMode
Source§impl Ord for NuxtRenderingMode
impl Ord for NuxtRenderingMode
Source§fn cmp(&self, other: &NuxtRenderingMode) -> Ordering
fn cmp(&self, other: &NuxtRenderingMode) -> Ordering
1.21.0 (const: unstable) · 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 NuxtRenderingMode
impl PartialEq for NuxtRenderingMode
Source§fn eq(&self, other: &NuxtRenderingMode) -> bool
fn eq(&self, other: &NuxtRenderingMode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for NuxtRenderingMode
impl PartialOrd for NuxtRenderingMode
impl Copy for NuxtRenderingMode
impl Eq for NuxtRenderingMode
impl StructuralPartialEq for NuxtRenderingMode
Auto Trait Implementations§
impl Freeze for NuxtRenderingMode
impl RefUnwindSafe for NuxtRenderingMode
impl Send for NuxtRenderingMode
impl Sync for NuxtRenderingMode
impl Unpin for NuxtRenderingMode
impl UnsafeUnpin for NuxtRenderingMode
impl UnwindSafe for NuxtRenderingMode
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