pub enum WindowsHydrationPolicyPrimary {
Progressive,
Full,
AlwaysFull,
}Expand description
Hydration behavior requested from CFAPI.
Variants§
Progressive
Complete user I/O after the requested range is available and continue in the background.
Full
Hydrate the complete file before completing user I/O.
AlwaysFull
Keep every placeholder fully hydrated.
Trait Implementations§
Source§impl Clone for WindowsHydrationPolicyPrimary
impl Clone for WindowsHydrationPolicyPrimary
Source§fn clone(&self) -> WindowsHydrationPolicyPrimary
fn clone(&self) -> WindowsHydrationPolicyPrimary
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for WindowsHydrationPolicyPrimary
impl PartialEq for WindowsHydrationPolicyPrimary
Source§fn eq(&self, other: &WindowsHydrationPolicyPrimary) -> bool
fn eq(&self, other: &WindowsHydrationPolicyPrimary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for WindowsHydrationPolicyPrimary
impl Eq for WindowsHydrationPolicyPrimary
impl StructuralPartialEq for WindowsHydrationPolicyPrimary
Auto Trait Implementations§
impl Freeze for WindowsHydrationPolicyPrimary
impl RefUnwindSafe for WindowsHydrationPolicyPrimary
impl Send for WindowsHydrationPolicyPrimary
impl Sync for WindowsHydrationPolicyPrimary
impl Unpin for WindowsHydrationPolicyPrimary
impl UnwindSafe for WindowsHydrationPolicyPrimary
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