pub enum ImageType {
Light,
Bias,
Dark,
Flat,
MasterBias,
MasterDark,
MasterFlat,
Unknown(String),
}Expand description
What an exposure was for, from the IMAGETYP card.
Variants§
Light
A frame of the sky itself.
Bias
A zero-length frame, to measure the sensor’s readout offset.
Dark
A frame taken with the shutter closed, to measure sensor noise.
Flat
An evenly lit frame, to measure the optics’ response across the field.
MasterBias
A bias frame combined from many.
MasterDark
A dark frame combined from many.
MasterFlat
A flat frame combined from many.
Unknown(String)
Anything else the card said.
Trait Implementations§
impl Eq for ImageType
impl StructuralPartialEq for ImageType
Auto Trait Implementations§
impl Freeze for ImageType
impl RefUnwindSafe for ImageType
impl Send for ImageType
impl Sync for ImageType
impl Unpin for ImageType
impl UnsafeUnpin for ImageType
impl UnwindSafe for ImageType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more