pub enum CoordinateSystem {
Cartesian,
Spherical,
Cylindrical,
Polar,
}Expand description
Coordinate systems for differential operators
Variants§
Cartesian
Cartesian coordinates (x, y, z, …)
Spherical
Spherical coordinates (r, θ, φ)
Cylindrical
Cylindrical coordinates (ρ, φ, z)
Polar
Polar coordinates (r, θ) - 2D only
Trait Implementations§
Source§impl Clone for CoordinateSystem
impl Clone for CoordinateSystem
Source§fn clone(&self) -> CoordinateSystem
fn clone(&self) -> CoordinateSystem
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 CoordinateSystem
impl Debug for CoordinateSystem
Source§impl PartialEq for CoordinateSystem
impl PartialEq for CoordinateSystem
impl Copy for CoordinateSystem
impl Eq for CoordinateSystem
impl StructuralPartialEq for CoordinateSystem
Auto Trait Implementations§
impl Freeze for CoordinateSystem
impl RefUnwindSafe for CoordinateSystem
impl Send for CoordinateSystem
impl Sync for CoordinateSystem
impl Unpin for CoordinateSystem
impl UnwindSafe for CoordinateSystem
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