pub enum ContentStreamOrder {
Logical,
Physical,
}Expand description
Ordering used by Lockbox::stream_content.
Variants§
Logical
Stream by lockbox path and logical file offset.
Physical
Stream stored content chunks by physical page offset where possible.
Trait Implementations§
Source§impl Clone for ContentStreamOrder
impl Clone for ContentStreamOrder
Source§fn clone(&self) -> ContentStreamOrder
fn clone(&self) -> ContentStreamOrder
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 ContentStreamOrder
Source§impl Debug for ContentStreamOrder
impl Debug for ContentStreamOrder
Source§impl Default for ContentStreamOrder
impl Default for ContentStreamOrder
Source§fn default() -> ContentStreamOrder
fn default() -> ContentStreamOrder
Returns the “default value” for a type. Read more
impl Eq for ContentStreamOrder
Source§impl PartialEq for ContentStreamOrder
impl PartialEq for ContentStreamOrder
impl StructuralPartialEq for ContentStreamOrder
Auto Trait Implementations§
impl Freeze for ContentStreamOrder
impl RefUnwindSafe for ContentStreamOrder
impl Send for ContentStreamOrder
impl Sync for ContentStreamOrder
impl Unpin for ContentStreamOrder
impl UnsafeUnpin for ContentStreamOrder
impl UnwindSafe for ContentStreamOrder
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