pub enum Projection {
Pinhole(PinholeImage),
Spherical(SphericalImage),
Cylindrical(CylindricalImage),
}Expand description
Contains one of the tree possible types for projectable images.
Variants§
Pinhole(PinholeImage)
Image with a pinhole projection model.
Spherical(SphericalImage)
Image with a spherical projection model.
Cylindrical(CylindricalImage)
Image with a cylindrical projection model.
Trait Implementations§
Source§impl Clone for Projection
impl Clone for Projection
Source§fn clone(&self) -> Projection
fn clone(&self) -> Projection
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 Projection
impl RefUnwindSafe for Projection
impl Send for Projection
impl Sync for Projection
impl Unpin for Projection
impl UnwindSafe for Projection
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