pub struct AtomCollection<T: ModelInfo> { /* private fields */ }
Expand description

Struct of Atom as data-driven design.

Implementations§

source§

impl<T: ModelInfo> AtomCollection<T>

source

pub fn update_symbol_at(
    &mut self,
    index: usize,
    new_symbol: &str
) -> Result<(), InvalidIndex>

Update the element_symbol at the given index.

Errors

This function will return an error if the index is out of bounds.

source

pub fn update_elm_id_at(
    &mut self,
    index: usize,
    new_elm_id: u8
) -> Result<(), InvalidIndex>

Update the element_id at the given index.

Errors

This function will return an error if the index is out of bounds.

source

pub fn update_xyz_at(
    &mut self,
    index: usize,
    new_xyz: Point3<f64>
) -> Result<(), InvalidIndex>

Update the xyz at the given index.

Errors

This function will return an error if the index is out of bounds.

source

pub fn update_frac_xyz_at(
    &mut self,
    index: usize,
    new_frac: Option<Point3<f64>>
) -> Result<(), InvalidIndex>

Update the fractional_xyz at the given index.

Errors

This function will return an error if the index is out of bounds.

source

pub fn update_atom_id_at(
    &mut self,
    index: usize,
    new_atom_id: u32
) -> Result<(), InvalidIndex>

Update the atom_id at the given index.

Errors

This function will return an error if the index is out of bounds.

source

pub fn update_atom_at(
    &mut self,
    index: usize,
    new_atom: Atom<T>
) -> Result<(), InvalidIndex>

Update the whole atom at the given index.

Errors

This function will return an error if the index is out of bounds.

source

pub fn element_symbols(&self) -> &[String]

source

pub fn atomic_nums(&self) -> &[u8]

source

pub fn xyz_coords(&self) -> &[Point3<f64>]

source

pub fn xyz_coords_mut(&mut self) -> &mut [Point3<f64>]

source

pub fn fractional_xyz(&self) -> &[Option<Point3<f64>>]

source

pub fn fractional_xyz_mut(&mut self) -> &mut [Option<Point3<f64>>]

source

pub fn atom_ids(&self) -> &[u32]

source

pub fn size(&self) -> usize

Trait Implementations§

source§

impl<T: ModelInfo> Add<AtomCollection<T>> for AtomCollection<T>

§

type Output = AtomCollection<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> AsRef<AtomCollection<T>> for &AtomCollection<T>

source§

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

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

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

source§

fn clone(&self) -> AtomCollection<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 AtomCollection<T>

source§

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

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

impl<T: Default + ModelInfo> Default for AtomCollection<T>

source§

fn default() -> AtomCollection<T>

Returns the “default value” for a type. Read more
source§

impl Display for AtomCollection<CellModel>

source§

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

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

impl Display for AtomCollection<MsiModel>

source§

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

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

impl<'a, T: ModelInfo> From<&'a AtomCollection<T>> for Vec<AtomView<'a, T>>

source§

fn from(src: &'a AtomCollection<T>) -> Self

Converts to this type from the input type.
source§

impl From<AtomCollection<MsiModel>> for AtomCollection<CellModel>

source§

fn from(src: AtomCollection<MsiModel>) -> Self

Converts to this type from the input type.
source§

impl<T: ModelInfo> From<AtomCollection<T>> for Vec<Atom<T>>

source§

fn from(src: AtomCollection<T>) -> Self

Converts to this type from the input type.
source§

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

source§

fn from(src: T) -> Self

Converts to this type from the input type.
source§

impl<T: ModelInfo> From<Vec<Atom<T>, Global>> for AtomCollection<T>

source§

fn from(src: Vec<Atom<T>>) -> Self

Converts to this type from the input type.
source§

impl<T> Transformation for AtomCollection<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 AtomCollection<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 AtomCollection<T>where
    T: RefUnwindSafe,

§

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

§

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

§

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

§

impl<T> UnwindSafe for AtomCollection<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> Borrow<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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> ToString for Twhere
    T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. 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.
const: unstable · 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.
const: unstable · 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