[][src]Struct codenano::Plate96

pub struct Plate96 {
    pub n: usize,
    pub column: usize,
    pub row: usize,
}

Representation of a 96-well plate being filled. Plates are filled from top to bottom (i.e. rows are incremented first), then from left to forward (columns are incremented).

Fields

n: usize

Plate number.

column: usize

Column number.

row: usize

Row number.

Implementations

impl Plate96[src]

pub fn new() -> Self[src]

Create a plate

pub fn incr(&mut self)[src]

Move to the next well.

pub fn incr_col(&mut self)[src]

Move to the next column.

pub fn incr_plate(&mut self)[src]

Move to the next plate.

Trait Implementations

impl Clone for Plate96[src]

impl Copy for Plate96[src]

impl Debug for Plate96[src]

Auto Trait Implementations

impl RefUnwindSafe for Plate96

impl Send for Plate96

impl Sync for Plate96

impl Unpin for Plate96

impl UnwindSafe for Plate96

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.