pub enum ObjectShape<'a> {
Point(Equatorial),
Footprint(&'a SkyFootprint),
Ellipse(&'a SkyEllipse),
}Expand description
Caller-supplied object geometry to measure against a captured union.
Variants§
Point(Equatorial)
Point-like or unknown-extent object.
Footprint(&'a SkyFootprint)
Ordered object boundary supplied as a validated footprint.
Ellipse(&'a SkyEllipse)
Sampled extended-object ellipse.
Trait Implementations§
Source§impl<'a> Clone for ObjectShape<'a>
impl<'a> Clone for ObjectShape<'a>
Source§fn clone(&self) -> ObjectShape<'a>
fn clone(&self) -> ObjectShape<'a>
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<'a> Copy for ObjectShape<'a>
Auto Trait Implementations§
impl<'a> Freeze for ObjectShape<'a>
impl<'a> RefUnwindSafe for ObjectShape<'a>
impl<'a> Send for ObjectShape<'a>
impl<'a> Sync for ObjectShape<'a>
impl<'a> Unpin for ObjectShape<'a>
impl<'a> UnsafeUnpin for ObjectShape<'a>
impl<'a> UnwindSafe for ObjectShape<'a>
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