pub struct BasisParameter {
pub exponent: f64,
pub normalization: f64,
pub angular_momentum: i32,
pub center_x: f64,
pub center_y: f64,
pub center_z: f64,
pub kx: f64,
pub ky: f64,
pub kz: f64,
}Expand description
Parameters for individual basis functions
Fields§
§exponent: f64Exponent parameter
normalization: f64Normalization constant
angular_momentum: i32Angular momentum quantum number
center_x: f64Center coordinates
center_y: f64§center_z: f64§kx: f64Wave vector components (for plane waves)
ky: f64§kz: f64Trait Implementations§
Source§impl Clone for BasisParameter
impl Clone for BasisParameter
Source§fn clone(&self) -> BasisParameter
fn clone(&self) -> BasisParameter
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 moreSource§impl Debug for BasisParameter
impl Debug for BasisParameter
Auto Trait Implementations§
impl Freeze for BasisParameter
impl RefUnwindSafe for BasisParameter
impl Send for BasisParameter
impl Sync for BasisParameter
impl Unpin for BasisParameter
impl UnwindSafe for BasisParameter
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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