#[repr(u8)]pub enum AccessHint {
Unknown = 0,
Sequential = 1,
Random = 2,
Full = 3,
Partial = 4,
}Expand description
Caller access hint at open time (advisory).
Variants§
Trait Implementations§
Source§impl Clone for AccessHint
impl Clone for AccessHint
Source§fn clone(&self) -> AccessHint
fn clone(&self) -> AccessHint
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 AccessHint
impl Debug for AccessHint
Source§impl Default for AccessHint
impl Default for AccessHint
Source§fn default() -> AccessHint
fn default() -> AccessHint
Returns the “default value” for a type. Read more
Source§impl PartialEq for AccessHint
impl PartialEq for AccessHint
Source§fn eq(&self, other: &AccessHint) -> bool
fn eq(&self, other: &AccessHint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AccessHint
impl Eq for AccessHint
impl StructuralPartialEq for AccessHint
Auto Trait Implementations§
impl Freeze for AccessHint
impl RefUnwindSafe for AccessHint
impl Send for AccessHint
impl Sync for AccessHint
impl Unpin for AccessHint
impl UnsafeUnpin for AccessHint
impl UnwindSafe for AccessHint
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