pub struct EntriesRequest {
pub locs: Locs,
pub filter: RecordFilter,
pub parse_tags: bool,
pub sort_locations: bool,
pub progress: Option<ProgressFn>,
}Fields§
§locs: Locs§filter: RecordFilterOptional fields are only decoded when read, so keeping them costs one small slice per alignment.
sort_locations: boolRead the loci in reference and position order, and report them in that order. Loci close together then share the blocks a read decompressed — 4 to 7 times faster on a scattered request.
progress: Option<ProgressFn>Implementations§
Trait Implementations§
Source§impl Clone for EntriesRequest
impl Clone for EntriesRequest
Source§fn clone(&self) -> EntriesRequest
fn clone(&self) -> EntriesRequest
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 !RefUnwindSafe for EntriesRequest
impl !UnwindSafe for EntriesRequest
impl Freeze for EntriesRequest
impl Send for EntriesRequest
impl Sync for EntriesRequest
impl Unpin for EntriesRequest
impl UnsafeUnpin for EntriesRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more