[][src]Struct co2mon::OpenOptions

pub struct OpenOptions { /* fields omitted */ }

Sensor open options.

Opens the first available device with the USB Vendor ID 0x04d9 and Product ID 0xa052, a 0 encryption key and a 5 seconds timeout.

Normally there's no need to change the encryption key.

Methods

impl OpenOptions[src]

pub fn with_serial(&mut self, sn: String) -> &mut Self[src]

Sets the serial number of the sensor device.

pub fn with_path(&mut self, path: CString) -> &mut Self[src]

Sets the path to the sensor device.

pub fn with_key(&mut self, key: [u8; 8]) -> &mut Self[src]

Sets the encryption key.

pub fn timeout(&mut self, timeout: Option<Duration>) -> &mut Self[src]

Sets the read timeout.

Trait Implementations

impl Default for OpenOptions[src]

Auto Trait Implementations

impl Send for OpenOptions

impl Sync for OpenOptions

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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