[][src]Struct onewire::ds18b20::DS18B20

pub struct DS18B20 { /* fields omitted */ }

Methods

impl DS18B20[src]

pub fn new<E: Debug>(device: Device) -> Result<DS18B20, Error<E>>[src]

pub unsafe fn new_forced(device: Device) -> DS18B20[src]

pub fn measure_temperature<E: Debug>(
    &self,
    wire: &mut OneWire<E>,
    delay: &mut dyn DelayUs<u16>
) -> Result<MeasureResolution, Error<E>>
[src]

pub fn read_temperature<E: Debug>(
    &self,
    wire: &mut OneWire<E>,
    delay: &mut dyn DelayUs<u16>
) -> Result<u16, Error<E>>
[src]

Trait Implementations

impl Sensor for DS18B20[src]

Auto Trait Implementations

impl Unpin for DS18B20

impl Send for DS18B20

impl Sync for DS18B20

Blanket Implementations

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

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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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