pub enum LoadRequest {
Head,
Thread(ThreadName),
Marker(MarkerName),
UndoRecovery,
RemoteThread {
remote: String,
thread: ThreadName,
},
ThreadList,
MarkerList,
RemoteList,
RemoteThreadList {
remote: String,
},
}Expand description
Which ref (or set of refs) a logical read wants. The single discriminator
reconciled_load dispatches on — a point read’s raw sub-step reads one ref;
a list read’s reads the summary set.
Variants§
Head
Thread(ThreadName)
Marker(MarkerName)
UndoRecovery
RemoteThread
ThreadList
MarkerList
RemoteList
RemoteThreadList
Implementations§
Trait Implementations§
Source§impl Clone for LoadRequest
impl Clone for LoadRequest
Source§fn clone(&self) -> LoadRequest
fn clone(&self) -> LoadRequest
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 moreAuto Trait Implementations§
impl Freeze for LoadRequest
impl RefUnwindSafe for LoadRequest
impl Send for LoadRequest
impl Sync for LoadRequest
impl Unpin for LoadRequest
impl UnsafeUnpin for LoadRequest
impl UnwindSafe for LoadRequest
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