Struct libdonet::dcmolecular::DCMolecularField

source ·
pub struct DCMolecularField<'dc> {
    base_field: DCField<'dc>,
    atomic_names: Vec<String>,
    atomic_fields: Vec<Rc<RefCell<DCAtomicField<'dc>>>>,
}
Expand description

An abstract field which provides an interface to access multiple atomic fields under one field and one identifier.

Fields§

§base_field: DCField<'dc>§atomic_names: Vec<String>§atomic_fields: Vec<Rc<RefCell<DCAtomicField<'dc>>>>

Implementations§

source§

impl<'dc> DCMolecularField<'dc>

source

pub(crate) fn new(name: &str, atomic_names: Vec<String>) -> Self

source

pub fn add_atomic_field(&mut self, atomic_ptr: Rc<RefCell<DCAtomicField<'dc>>>)

Adds a smart pointer to the original atomic field in our array.

source

pub fn get_num_atomics(&self) -> usize

source

pub fn get_atomic_field( &self, index: usize, ) -> Option<Rc<RefCell<DCAtomicField<'dc>>>>

source

pub fn _get_atomic_names(&self) -> Vec<String>

Used by the DC parser to get the atomic field smart pointers, once it has reached a point in the parse tree where we have the atomic fields assembled inside the DClass structure in memory.

source

pub fn _drop_atomic_names(&mut self)

Clears the temporary vector of atomic identifiers, used by the DC parser.

Trait Implementations§

source§

impl<'dc> DCHash for DCMolecularField<'dc>

source§

fn generate_hash(&self, hashgen: &mut DCHashGenerator)

Accumulates the properties of this DC element into the file hash.
source§

impl<'dc> Debug for DCMolecularField<'dc>

source§

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

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

impl<'dc> Display for DCMolecularField<'dc>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'dc> Freeze for DCMolecularField<'dc>

§

impl<'dc> !RefUnwindSafe for DCMolecularField<'dc>

§

impl<'dc> !Send for DCMolecularField<'dc>

§

impl<'dc> !Sync for DCMolecularField<'dc>

§

impl<'dc> Unpin for DCMolecularField<'dc>

§

impl<'dc> !UnwindSafe for DCMolecularField<'dc>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where 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.

source§

impl<T> ToString for T
where 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 T
where 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 T
where 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.