pub enum UAScanPattern {
ScanPatternNotUsed,
Conical,
Helical,
Raster,
SectorSearch,
ContinuousSearch,
Unspecified(u16),
}Expand description
UID 147
Variants§
Trait Implementations§
Source§impl Clone for UAScanPattern
impl Clone for UAScanPattern
Source§fn clone(&self) -> UAScanPattern
fn clone(&self) -> UAScanPattern
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 moreSource§impl Debug for UAScanPattern
impl Debug for UAScanPattern
Source§impl Default for UAScanPattern
impl Default for UAScanPattern
Source§impl Display for UAScanPattern
impl Display for UAScanPattern
Source§impl From<UAScanPattern> for u16
impl From<UAScanPattern> for u16
Source§fn from(value: UAScanPattern) -> Self
fn from(value: UAScanPattern) -> Self
Converts to this type from the input type.
Source§impl From<u16> for UAScanPattern
impl From<u16> for UAScanPattern
Source§impl Hash for UAScanPattern
impl Hash for UAScanPattern
Source§impl PartialEq for UAScanPattern
impl PartialEq for UAScanPattern
Source§fn eq(&self, other: &UAScanPattern) -> bool
fn eq(&self, other: &UAScanPattern) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for UAScanPattern
impl Eq for UAScanPattern
impl StructuralPartialEq for UAScanPattern
Auto Trait Implementations§
impl Freeze for UAScanPattern
impl RefUnwindSafe for UAScanPattern
impl Send for UAScanPattern
impl Sync for UAScanPattern
impl Unpin for UAScanPattern
impl UnsafeUnpin for UAScanPattern
impl UnwindSafe for UAScanPattern
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