[][src]Struct moteconnection::Connection

pub struct Connection { /* fields omitted */ }

The Connection struct manages a persistent connection with a radio module.

The available transports for the conenction with a radio module that are provided are:

  • serial
  • serialforwarder

TODO(Kaarel): Usage

Implementations

impl Connection[src]

pub fn new(
    transport_builder: Box<dyn TransportBuilder>,
    dispatchers: HashMap<u8, DispatcherHandle>
) -> Connection
[src]

Constructs a new instance of the Connection struct.

Usage

The Connection is typically built using the ConnectionBuilder:

let mut dispatcher = RawDispatcher::new(0x01);
let connection = ConnectionBuilder::with_connection_string("sf@localhost".to_string())
    .unwrap()
    .register_dispatcher(&mut dispatcher)
    .start();

pub fn stop(self) -> Result<(), &'static str>[src]

Shuts down the connection.

Usage

The Connection is typically built using the ConnectionBuilder:

let mut dispatcher = RawDispatcher::new(0x01);
let connection = ConnectionBuilder::with_connection_string("sf@localhost".to_string())
    .unwrap()
    .register_dispatcher(&mut dispatcher)
    .start();

// Do things...

let result = connection.stop();
assert_eq!(result, Ok(()));

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,