pub enum Factor {
R(usize),
P(usize),
}Expand description
An elementary factor of a one-electron operator product, along a Cartesian
axis (0 = x, 1 = y, 2 = z).
Variants§
R(usize)
Position r_axis (relative to the operator’s origin). Raises the ket
monomial by one along axis (plus the origin-shift copy).
P(usize)
Momentum p_axis = −i ∂_{r_axis}. The center-derivative combiner along
axis, carrying a factor of i.
Trait Implementations§
impl Copy for Factor
impl Eq for Factor
impl StructuralPartialEq for Factor
Auto Trait Implementations§
impl Freeze for Factor
impl RefUnwindSafe for Factor
impl Send for Factor
impl Sync for Factor
impl Unpin for Factor
impl UnsafeUnpin for Factor
impl UnwindSafe for Factor
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