pub struct LatticeModel<T: ModelInfo> { /* private fields */ }

Implementations§

source§

impl<T> LatticeModel<T>where T: ModelInfo,

source

pub fn new( lattice_vectors: Option<LatticeVectors<T>>, atoms: AtomCollection<T>, settings: Settings<T> ) -> Self

source

pub fn lattice_vectors(&self) -> Option<&LatticeVectors<T>>

Returns the lattice vectors of this LatticeModel<T>.

source

pub fn atoms(&self) -> &AtomCollection<T>

source

pub fn atoms_mut(&mut self) -> &mut AtomCollection<T>

source

pub fn lattice_vectors_mut(&mut self) -> &mut Option<LatticeVectors<T>>

source

pub fn settings(&self) -> &Settings<T>

source§

impl LatticeModel<CellModel>

Methods only for LatticeModel<CellFormat>

source

pub fn build_kptaux(&self) -> KptAux

Build KptAux struct

source

pub fn build_trjaux(&self) -> TrjAux

Build TrjAux struct

Trait Implementations§

source§

impl<T> Add<LatticeModel<T>> for LatticeModel<T>where T: ModelInfo,

Implementation of Add for merging LatticeModel<T> Both self and rhs will be consumed.

§

type Output = LatticeModel<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl<T: ModelInfo> AsMut<LatticeModel<T>> for LatticeModel<T>

source§

fn as_mut(&mut self) -> &mut LatticeModel<T>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<T: ModelInfo> AsRef<LatticeModel<T>> for LatticeModel<T>

source§

fn as_ref(&self) -> &LatticeModel<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T: Clone + ModelInfo> Clone for LatticeModel<T>

source§

fn clone(&self) -> LatticeModel<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug + ModelInfo> Debug for LatticeModel<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> From<T> for LatticeModel<CellModel>where T: AsRef<LatticeModel<MsiModel>> + AsMut<LatticeModel<MsiModel>>,

Transition from LatticeModel<MsiFormat> to LatticeModel<CellFormat>

source§

fn from(msi_model: T) -> Self

Converts to this type from the input type.
source§

impl<T> From<T> for LatticeModel<MsiModel>where T: AsRef<LatticeModel<CellModel>>,

source§

fn from(cell_model: T) -> Self

Converts to this type from the input type.
source§

impl FromStr for LatticeModel<MsiModel>

§

type Err = Err<&'static str>

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
source§

impl<T> Transformation for LatticeModel<T>where T: ModelInfo,

source§

fn rotate(&mut self, rotate_quatd: &UnitQuaternion<f64>)

source§

fn translate(&mut self, translate_matrix: &Translation<f64, 3>)

source§

impl<T> VisitCollection<T> for LatticeModel<T>where T: ModelInfo,

source§

fn get_xyz_by_id(&self, atom_id: u32) -> Option<&Point3<f64>>

source§

fn get_multiple_xyz_by_id<'a, 'b>( &'a self, atom_ids: &'b [u32] ) -> Vec<Option<&'a Point3<f64>>>

source§

fn view_atom_at_index( &self, index: usize ) -> Result<AtomView<'_, T>, InvalidIndex>

source§

fn view_atom_by_id(&self, atom_id: u32) -> Result<AtomView<'_, T>, InvalidIndex>

source§

fn get_vector_ab( &self, a_id: u32, b_id: u32 ) -> Result<Vector3<f64>, InvalidIndex>

source§

fn element_set(&self) -> Vec<String>

source§

fn spin_total(&self) -> u8

source§

fn get_final_cutoff_energy(&self, potentials_loc: &str) -> Result<f64, Error>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for LatticeModel<T>where T: RefUnwindSafe,

§

impl<T> Send for LatticeModel<T>where T: Send,

§

impl<T> Sync for LatticeModel<T>where T: Sync,

§

impl<T> Unpin for LatticeModel<T>where T: Unpin,

§

impl<T> UnwindSafe for LatticeModel<T>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> BandStructureExport<CellModel> for Twhere T: AsRef<LatticeModel<CellModel>>,

source§

fn export(&self) -> String

source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DefaultExport<CellModel> for Twhere T: AsRef<LatticeModel<CellModel>>,

source§

fn export(&self) -> String

source§

impl<T> DefaultExport<MsiModel> for Twhere T: AsRef<LatticeModel<MsiModel>>,

source§

fn export(&self) -> String

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
§

impl<SS, SP> SupersetOf<SS> for SPwhere SS: SubsetOf<SP>,

§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V