[][src]Struct molconv::Frame

pub struct Frame {
    pub num_atoms: u32,
    pub step: u32,
    pub time: f32,
    pub box_vector: [[f32; 3]; 3],
    pub coords: Vec<[f32; 3]>,
}

Representation of a single frame of an MD trajectory

Fields

num_atoms: u32

Number of atoms in the frame

step: u32

Trajectory step

time: f32

Time step

box_vector: [[f32; 3]; 3]

3x3 box vector

coords: Vec<[f32; 3]>

3D coordinates for N atoms where N is num_atoms

Methods

impl Frame[src]

pub fn new() -> Frame[src]

pub fn with_capacity(num_atoms: u32) -> Frame[src]

pub fn filter_coords(self: &mut Frame, indeces: &[usize])[src]

Trait Implementations

impl Clone for Frame[src]

impl Default for Frame[src]

impl Debug for Frame[src]

Auto Trait Implementations

impl Send for Frame

impl Sync for Frame

impl Unpin for Frame

impl UnwindSafe for Frame

impl RefUnwindSafe for Frame

Blanket Implementations

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

impl<T> From<T> for 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 = !

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.

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

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

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