#[non_exhaustive]pub enum ParameterBankAccess {
Bulk,
Incremental,
}Expand description
Generic workload class for independently addressable storage access.
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.
Bulk
A multi-row access eligible for bounded partitioning.
Incremental
A latency-sensitive incremental access.
Trait Implementations§
Source§impl Clone for ParameterBankAccess
impl Clone for ParameterBankAccess
Source§fn clone(&self) -> ParameterBankAccess
fn clone(&self) -> ParameterBankAccess
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 ParameterBankAccess
Source§impl Debug for ParameterBankAccess
impl Debug for ParameterBankAccess
impl Eq for ParameterBankAccess
Source§impl Hash for ParameterBankAccess
impl Hash for ParameterBankAccess
Source§impl Ord for ParameterBankAccess
impl Ord for ParameterBankAccess
Source§fn cmp(&self, other: &ParameterBankAccess) -> Ordering
fn cmp(&self, other: &ParameterBankAccess) -> 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
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for ParameterBankAccess
impl PartialEq for ParameterBankAccess
Source§impl PartialOrd for ParameterBankAccess
impl PartialOrd for ParameterBankAccess
impl StructuralPartialEq for ParameterBankAccess
Auto Trait Implementations§
impl Freeze for ParameterBankAccess
impl RefUnwindSafe for ParameterBankAccess
impl Send for ParameterBankAccess
impl Sync for ParameterBankAccess
impl Unpin for ParameterBankAccess
impl UnsafeUnpin for ParameterBankAccess
impl UnwindSafe for ParameterBankAccess
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