Struct pdbtbx::MtriX[][src]

pub struct MtriX {
    pub serial_number: usize,
    pub transformation: TransformationMatrix,
    pub contained: bool,
}

A transformation expressing non-crystallographic symmetry, used when transformations are required to generate the whole asymmetric subunit

Fields

serial_number: usize

The serial number of this transformation

transformation: TransformationMatrix

The transformation

contained: bool

If the coordinates of the molecule are contained in the entry this is true

Implementations

impl MtriX[src]

pub fn new(
    serial_number: usize,
    transformation: TransformationMatrix,
    contained: bool
) -> Self
[src]

Create a new MtriX with the given arguments

Trait Implementations

impl Clone for MtriX[src]

impl Debug for MtriX[src]

impl Default for MtriX[src]

impl PartialEq<MtriX> for MtriX[src]

impl PartialOrd<MtriX> for MtriX[src]

impl StructuralPartialEq for MtriX[src]

Auto Trait Implementations

impl RefUnwindSafe for MtriX

impl Send for MtriX

impl Sync for MtriX

impl Unpin for MtriX

impl UnwindSafe for MtriX

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> 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.