pub struct SphericalFamily;Expand description
Spherical family marker.
Mirrors boost::geometry::spherical_polar_tag /
spherical_equatorial_tag (boost/geometry/core/tags.hpp, the tag
chain at cs.hpp:200-211). We collapse both Boost tags into a
single family per proposal §3.3.
§Examples
use geometry_cs::{CoordinateSystem, Degree, Spherical, SphericalFamily};
let _: <Spherical<Degree> as CoordinateSystem>::Family = SphericalFamily;Trait Implementations§
Source§impl Clone for SphericalFamily
impl Clone for SphericalFamily
Source§fn clone(&self) -> SphericalFamily
fn clone(&self) -> SphericalFamily
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SphericalFamily
Source§impl Debug for SphericalFamily
impl Debug for SphericalFamily
Source§impl Default for SphericalFamily
impl Default for SphericalFamily
Source§fn default() -> SphericalFamily
fn default() -> SphericalFamily
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SphericalFamily
impl RefUnwindSafe for SphericalFamily
impl Send for SphericalFamily
impl Sync for SphericalFamily
impl Unpin for SphericalFamily
impl UnsafeUnpin for SphericalFamily
impl UnwindSafe for SphericalFamily
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