[][src]Struct protein_core::metadata::crystallography::Cryst1

pub struct Cryst1 {
    pub a: f32,
    pub b: f32,
    pub c: f32,
    pub alpha: f32,
    pub beta: f32,
    pub gamma: f32,
    pub lattice_type: LatticeType,
    pub space_group: SpaceGroup,
    pub z: u8,
}

Cryst1 The CRYST1 record presents the unit cell parameters, space group, and Z value. If the structure was not determined by crystallographic means, CRYST1 simply provides the unitary values, with an appropriate REMARK.

Record Format

COLUMNS DATA TYPE FIELD DEFINITION

1 - 6 Record name "CRYST1" 7 - 15 Real(9.3) a a (Angstroms). 16 - 24 Real(9.3) b b (Angstroms). 25 - 33 Real(9.3) c c (Angstroms). 34 - 40 Real(7.2) alpha alpha (degrees). 41 - 47 Real(7.2) beta beta (degrees). 48 - 54 Real(7.2) gamma gamma (degrees). 56 - 66 LString sGroup Space group. 67 - 70 Integer z Z value.

Additional References

  • https://infogalactic.com/info/Hermann%E2%80%93Mauguin_notation
  • https://enacademic.com/dic.nsf/enwiki/1879109

Fields

a: f32b: f32c: f32alpha: f32beta: f32gamma: f32lattice_type: LatticeTypespace_group: SpaceGroupz: u8

Trait Implementations

impl Clone for Cryst1[src]

impl Debug for Cryst1[src]

impl Default for Cryst1[src]

impl PartialEq<Cryst1> for Cryst1[src]

impl Serialize for Cryst1[src]

impl StructuralPartialEq for Cryst1[src]

Auto Trait Implementations

impl RefUnwindSafe for Cryst1

impl Send for Cryst1

impl Sync for Cryst1

impl Unpin for Cryst1

impl UnwindSafe for Cryst1

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.