pub struct MolecularIntegrator { /* private fields */ }Expand description
Molecular integrator
Implementations§
Source§impl MolecularIntegrator
impl MolecularIntegrator
pub fn new() -> Self
Sourcepub fn integrator_type(&self) -> &IntegratorType
pub fn integrator_type(&self) -> &IntegratorType
Borrow the integrator type.
Sourcepub fn set_integrator_type(&mut self, integrator_type: IntegratorType)
pub fn set_integrator_type(&mut self, integrator_type: IntegratorType)
Set the integrator type.
Sourcepub fn integrator_parameters(&self) -> &IntegratorParameters
pub fn integrator_parameters(&self) -> &IntegratorParameters
Borrow the integrator parameters.
Sourcepub fn integrator_parameters_mut(&mut self) -> &mut IntegratorParameters
pub fn integrator_parameters_mut(&mut self) -> &mut IntegratorParameters
Mutably borrow the integrator parameters.
pub fn initialize(&mut self) -> Result<(), ChemistryError>
Auto Trait Implementations§
impl Freeze for MolecularIntegrator
impl RefUnwindSafe for MolecularIntegrator
impl Send for MolecularIntegrator
impl Sync for MolecularIntegrator
impl Unpin for MolecularIntegrator
impl UnsafeUnpin for MolecularIntegrator
impl UnwindSafe for MolecularIntegrator
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more