pub enum Site<'a> {
Standard(&'a Count),
Projected(Projected<'a>),
InsufficientData,
}Expand description
An input site.
This type results from reader genotypes from a Reader with its particular configuration.
See there for details.
Variants§
Standard(&'a Count)
A standard count with no projection.
Projected(Projected<'a>)
A projected count.
InsufficientData
A site with insufficient data.
Auto Trait Implementations§
impl<'a> Freeze for Site<'a>
impl<'a> RefUnwindSafe for Site<'a>
impl<'a> Send for Site<'a>
impl<'a> Sync for Site<'a>
impl<'a> Unpin for Site<'a>
impl<'a> !UnwindSafe for Site<'a>
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