pub enum Samples {
Path(PathBuf),
List(Vec<(Sample, Population)>),
}Expand description
A source for a sample mapping.
Variants§
Path(PathBuf)
A path to a samples file.
List(Vec<(Sample, Population)>)
A list of samples and associated populations.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Samples
impl RefUnwindSafe for Samples
impl Send for Samples
impl Sync for Samples
impl Unpin for Samples
impl UnwindSafe for Samples
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