#[non_exhaustive]pub enum WindowStorage {
Raw,
Zlib,
}Expand description
How predecessor windows are retained while an index is built.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for WindowStorage
impl Clone for WindowStorage
Source§fn clone(&self) -> WindowStorage
fn clone(&self) -> WindowStorage
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 moreimpl Copy for WindowStorage
Source§impl Debug for WindowStorage
impl Debug for WindowStorage
Source§impl Default for WindowStorage
impl Default for WindowStorage
Source§fn default() -> WindowStorage
fn default() -> WindowStorage
Returns the “default value” for a type. Read more
impl Eq for WindowStorage
Source§impl PartialEq for WindowStorage
impl PartialEq for WindowStorage
impl StructuralPartialEq for WindowStorage
Auto Trait Implementations§
impl Freeze for WindowStorage
impl RefUnwindSafe for WindowStorage
impl Send for WindowStorage
impl Sync for WindowStorage
impl Unpin for WindowStorage
impl UnsafeUnpin for WindowStorage
impl UnwindSafe for WindowStorage
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