Struct spglib_sys::SpglibDataset[][src]

#[repr(C)]
pub struct SpglibDataset {
Show fields pub spacegroup_number: c_int, pub hall_number: c_int, pub international_symbol: [c_char; 11], pub hall_symbol: [c_char; 17], pub choice: [c_char; 6], pub transformation_matrix: [[f64; 3]; 3], pub origin_shift: [f64; 3], pub n_operations: c_int, pub rotations: *mut [[c_int; 3]; 3], pub translations: *mut [f64; 3], pub n_atoms: c_int, pub wyckoffs: *mut c_int, pub site_symmetry_symbols: *mut [c_char; 7], pub equivalent_atoms: *mut c_int, pub crystallographic_orbits: *mut c_int, pub primitive_lattice: [[f64; 3]; 3], pub mapping_to_primitive: *mut c_int, pub n_std_atoms: c_int, pub std_lattice: [[f64; 3]; 3], pub std_types: *mut c_int, pub std_positions: *mut [f64; 3], pub std_rotation_matrix: [[f64; 3]; 3], pub std_mapping_to_primitive: *mut c_int, pub pointgroup_symbol: [c_char; 6],
}

Fields

spacegroup_number: c_inthall_number: c_intinternational_symbol: [c_char; 11]hall_symbol: [c_char; 17]choice: [c_char; 6]transformation_matrix: [[f64; 3]; 3]origin_shift: [f64; 3]n_operations: c_introtations: *mut [[c_int; 3]; 3]translations: *mut [f64; 3]n_atoms: c_intwyckoffs: *mut c_intsite_symmetry_symbols: *mut [c_char; 7]equivalent_atoms: *mut c_intcrystallographic_orbits: *mut c_intprimitive_lattice: [[f64; 3]; 3]mapping_to_primitive: *mut c_intn_std_atoms: c_intstd_lattice: [[f64; 3]; 3]std_types: *mut c_intstd_positions: *mut [f64; 3]std_rotation_matrix: [[f64; 3]; 3]std_mapping_to_primitive: *mut c_intpointgroup_symbol: [c_char; 6]

Trait Implementations

impl Clone for SpglibDataset[src]

impl Copy for SpglibDataset[src]

impl Debug for SpglibDataset[src]

Auto Trait Implementations

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.