pub struct PopulationAnalysisBuilder { /* private fields */ }Expand description
Builder for PopulationAnalysis.
Implementations§
Source§impl PopulationAnalysisBuilder
impl PopulationAnalysisBuilder
pub fn pdos_calculate_weights<VALUE: Into<PDOSCalculateWeights>>( &mut self, value: VALUE, ) -> &mut Self
pub fn popn_bond_cutoff<VALUE: Into<PopnBondCutoff>>( &mut self, value: VALUE, ) -> &mut Self
pub fn popn_calculate<VALUE: Into<PopnCalculate>>( &mut self, value: VALUE, ) -> &mut Self
pub fn popn_write<VALUE: Into<PopnWrite>>(&mut self, value: VALUE) -> &mut Self
Sourcepub fn build(
&self,
) -> Result<PopulationAnalysis, PopulationAnalysisBuilderError>
pub fn build( &self, ) -> Result<PopulationAnalysis, PopulationAnalysisBuilderError>
Trait Implementations§
Source§impl Clone for PopulationAnalysisBuilder
impl Clone for PopulationAnalysisBuilder
Source§fn clone(&self) -> PopulationAnalysisBuilder
fn clone(&self) -> PopulationAnalysisBuilder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PopulationAnalysisBuilder
impl RefUnwindSafe for PopulationAnalysisBuilder
impl Send for PopulationAnalysisBuilder
impl Sync for PopulationAnalysisBuilder
impl Unpin for PopulationAnalysisBuilder
impl UnwindSafe for PopulationAnalysisBuilder
Blanket Implementations§
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