Struct forrustts::Site[][src]

pub struct Site {
    pub position: Position,
    pub ancestral_state: Option<Vec<u8>>,
}

A Site is the location and ancestral state of a tables::MutationRecord

Fields

position: Position

Position of the mutation

ancestral_state: Option<Vec<u8>>

The ancestral state. None implies client code will apply a default.

Auto Trait Implementations

impl RefUnwindSafe for Site

impl Send for Site

impl Sync for Site

impl Unpin for Site

impl UnwindSafe for Site

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.