[][src]Trait deoxy::Out

pub trait Out {
    fn set_high(&mut self);
fn set_low(&mut self); fn set(&mut self, value: bool) { ... } }

Trait representing a general output device.

Required methods

fn set_high(&mut self)

Sets the output device high.

fn set_low(&mut self)

Sets the output device low.

Loading content...

Provided methods

fn set(&mut self, value: bool)

Sets the output device high/low.

Loading content...

Implementations on Foreign Types

impl Out for OutputPin[src]

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

Loading content...

Implementors

impl Out for Pin[src]

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

Loading content...