[][src]Struct mavlink::common::MavSysStatusSensor

pub struct MavSysStatusSensor { /* fields omitted */ }

Implementations

impl MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_3D_GYRO: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_3D_ACCEL: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_3D_MAG: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_ABSOLUTE_PRESSURE: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_DIFFERENTIAL_PRESSURE: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_GPS: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_OPTICAL_FLOW: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_VISION_POSITION: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_LASER_POSITION: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_EXTERNAL_GROUND_TRUTH: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_ANGULAR_RATE_CONTROL: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_ATTITUDE_STABILIZATION: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_YAW_POSITION: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_Z_ALTITUDE_CONTROL: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_XY_POSITION_CONTROL: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_MOTOR_OUTPUTS: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_RC_RECEIVER: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_3D_GYRO2: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_3D_ACCEL2: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_3D_MAG2: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_GEOFENCE: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_AHRS: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_TERRAIN: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_REVERSE_MOTOR: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_LOGGING: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_BATTERY: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_PROXIMITY: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_SENSOR_SATCOM: MavSysStatusSensor[src]

pub const MAV_SYS_STATUS_PREARM_CHECK: MavSysStatusSensor[src]

pub const fn empty() -> MavSysStatusSensor[src]

Returns an empty set of flags

pub const fn all() -> MavSysStatusSensor[src]

Returns the set containing all flags.

pub const fn bits(&self) -> u32[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u32) -> Option<MavSysStatusSensor>[src]

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: u32) -> MavSysStatusSensor[src]

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: u32) -> MavSysStatusSensor[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool[src]

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool[src]

Returns true if all flags are currently set.

pub const fn intersects(&self, other: MavSysStatusSensor) -> bool[src]

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: MavSysStatusSensor) -> bool[src]

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: MavSysStatusSensor)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: MavSysStatusSensor)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: MavSysStatusSensor)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: MavSysStatusSensor, value: bool)[src]

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Binary for MavSysStatusSensor[src]

impl BitAnd<MavSysStatusSensor> for MavSysStatusSensor[src]

type Output = MavSysStatusSensor

The resulting type after applying the & operator.

fn bitand(self, other: MavSysStatusSensor) -> MavSysStatusSensor[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<MavSysStatusSensor> for MavSysStatusSensor[src]

fn bitand_assign(&mut self, other: MavSysStatusSensor)[src]

Disables all flags disabled in the set.

impl BitOr<MavSysStatusSensor> for MavSysStatusSensor[src]

type Output = MavSysStatusSensor

The resulting type after applying the | operator.

fn bitor(self, other: MavSysStatusSensor) -> MavSysStatusSensor[src]

Returns the union of the two sets of flags.

impl BitOrAssign<MavSysStatusSensor> for MavSysStatusSensor[src]

fn bitor_assign(&mut self, other: MavSysStatusSensor)[src]

Adds the set of flags.

impl BitXor<MavSysStatusSensor> for MavSysStatusSensor[src]

type Output = MavSysStatusSensor

The resulting type after applying the ^ operator.

fn bitxor(self, other: MavSysStatusSensor) -> MavSysStatusSensor[src]

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<MavSysStatusSensor> for MavSysStatusSensor[src]

fn bitxor_assign(&mut self, other: MavSysStatusSensor)[src]

Toggles the set of flags.

impl Clone for MavSysStatusSensor[src]

impl Copy for MavSysStatusSensor[src]

impl Debug for MavSysStatusSensor[src]

impl Default for MavSysStatusSensor[src]

impl<'de> Deserialize<'de> for MavSysStatusSensor[src]

impl Eq for MavSysStatusSensor[src]

impl Extend<MavSysStatusSensor> for MavSysStatusSensor[src]

impl FromIterator<MavSysStatusSensor> for MavSysStatusSensor[src]

impl Hash for MavSysStatusSensor[src]

impl LowerHex for MavSysStatusSensor[src]

impl Not for MavSysStatusSensor[src]

type Output = MavSysStatusSensor

The resulting type after applying the ! operator.

fn not(self) -> MavSysStatusSensor[src]

Returns the complement of this set of flags.

impl Octal for MavSysStatusSensor[src]

impl Ord for MavSysStatusSensor[src]

impl PartialEq<MavSysStatusSensor> for MavSysStatusSensor[src]

impl PartialOrd<MavSysStatusSensor> for MavSysStatusSensor[src]

impl Serialize for MavSysStatusSensor[src]

impl StructuralEq for MavSysStatusSensor[src]

impl StructuralPartialEq for MavSysStatusSensor[src]

impl Sub<MavSysStatusSensor> for MavSysStatusSensor[src]

type Output = MavSysStatusSensor

The resulting type after applying the - operator.

fn sub(self, other: MavSysStatusSensor) -> MavSysStatusSensor[src]

Returns the set difference of the two sets of flags.

impl SubAssign<MavSysStatusSensor> for MavSysStatusSensor[src]

fn sub_assign(&mut self, other: MavSysStatusSensor)[src]

Disables all flags enabled in the set.

impl UpperHex for MavSysStatusSensor[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.