pub enum ValueStatus {
InMemory,
OnDisk,
NotComputed,
Streaming,
}Expand description
Status of a VirtualValue without inspecting the actual data.
Variants§
InMemory
In memory, ready to use.
OnDisk
On disk/cache, needs loading.
NotComputed
Not computed, needs execution.
Streaming
Streaming, partial data.
Trait Implementations§
Source§impl Clone for ValueStatus
impl Clone for ValueStatus
Source§fn clone(&self) -> ValueStatus
fn clone(&self) -> ValueStatus
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 Debug for ValueStatus
impl Debug for ValueStatus
Source§impl PartialEq for ValueStatus
impl PartialEq for ValueStatus
impl Copy for ValueStatus
impl Eq for ValueStatus
impl StructuralPartialEq for ValueStatus
Auto Trait Implementations§
impl Freeze for ValueStatus
impl RefUnwindSafe for ValueStatus
impl Send for ValueStatus
impl Sync for ValueStatus
impl Unpin for ValueStatus
impl UnsafeUnpin for ValueStatus
impl UnwindSafe for ValueStatus
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