pub struct ColorRunSidecar {
pub run_path: PathBuf,
pub unitigs: u64,
pub runs: u64,
}Fields§
§run_path: PathBuf§unitigs: u64§runs: u64Implementations§
Source§impl ColorRunSidecar
impl ColorRunSidecar
pub fn reader_at( &self, byte_offset: u64, ) -> Result<ColorRunStreamReader, ColorError>
pub fn read_unitig(&self, unitig: u64) -> Result<Vec<UnitigColor>, ColorError>
Trait Implementations§
Source§impl Clone for ColorRunSidecar
impl Clone for ColorRunSidecar
Source§fn clone(&self) -> ColorRunSidecar
fn clone(&self) -> ColorRunSidecar
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 ColorRunSidecar
impl RefUnwindSafe for ColorRunSidecar
impl Send for ColorRunSidecar
impl Sync for ColorRunSidecar
impl Unpin for ColorRunSidecar
impl UnsafeUnpin for ColorRunSidecar
impl UnwindSafe for ColorRunSidecar
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