Enum ascom_alpaca::api::ImageArrayRank
source · #[repr(i32)]pub enum ImageArrayRank {
Rank2,
Rank3,
}
Available on crate feature
camera
only.Expand description
Rank of an image array.
Variants§
Trait Implementations§
source§impl Clone for ImageArrayRank
impl Clone for ImageArrayRank
source§fn clone(&self) -> ImageArrayRank
fn clone(&self) -> ImageArrayRank
Returns a copy 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 ImageArrayRank
impl Debug for ImageArrayRank
source§impl<'de> Deserialize<'de> for ImageArrayRank
impl<'de> Deserialize<'de> for ImageArrayRank
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<ImageArrayRank> for i32
impl From<ImageArrayRank> for i32
source§fn from(enum_value: ImageArrayRank) -> Self
fn from(enum_value: ImageArrayRank) -> Self
Converts to this type from the input type.
source§impl PartialEq<ImageArrayRank> for ImageArrayRank
impl PartialEq<ImageArrayRank> for ImageArrayRank
source§fn eq(&self, other: &ImageArrayRank) -> bool
fn eq(&self, other: &ImageArrayRank) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ImageArrayRank
impl Serialize for ImageArrayRank
source§impl TryFrom<i32> for ImageArrayRank
impl TryFrom<i32> for ImageArrayRank
§type Error = TryFromPrimitiveError<ImageArrayRank>
type Error = TryFromPrimitiveError<ImageArrayRank>
The type returned in the event of a conversion error.
source§impl TryFromPrimitive for ImageArrayRank
impl TryFromPrimitive for ImageArrayRank
impl Copy for ImageArrayRank
impl Eq for ImageArrayRank
impl StructuralEq for ImageArrayRank
impl StructuralPartialEq for ImageArrayRank
Auto Trait Implementations§
impl RefUnwindSafe for ImageArrayRank
impl Send for ImageArrayRank
impl Sync for ImageArrayRank
impl Unpin for ImageArrayRank
impl UnwindSafe for ImageArrayRank
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.