Struct l3gd20::Status [] [src]

pub struct Status {
    pub overrun: bool,
    pub z_overrun: bool,
    pub y_overrun: bool,
    pub x_overrun: bool,
    pub new_data: bool,
    pub z_new: bool,
    pub y_new: bool,
    pub x_new: bool,
}

Sensor status

Fields

Overrun (data has overwritten previously unread data) has occurred on at least one axis

Overrun occurred on Z-axis

Overrun occurred on Y-axis

Overrun occurred on X-axis

New data is available for either X, Y, Z - axis

New data is available on Z-axis

New data is available on Y-axis

New data is available on X-axis

Trait Implementations

impl Debug for Status
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Status
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Status
[src]

Auto Trait Implementations

impl Send for Status

impl Sync for Status