[][src]Struct pelcodrs::PelcoDPort

pub struct PelcoDPort<T: Read + Write>(_);

Interface for communicating with a device using Pelco D protocol.

This structure encapsulates a Read + Write object, and uses it for communicating with the target Pelco D device.

For example, a SerialPort object from the crate serialport can be used as port:

This example is not tested
use serialport;
use pelcodrs::{PelcoDPort, Message};

let pelcod_dev = PelcoDPort::new(serialport::open("/dev/ttyS0"));
pelcod_dev.send_message(Message::flip_180(10)?)?;

Methods

impl<T: Read + Write> PelcoDPort<T>[src]

Important traits for PelcoDPort<T>
pub fn new(ser: T) -> PelcoDPort<T>[src]

impl<T: Read + Write> PelcoDPort<T>[src]

pub fn send_message(&mut self, message: Message) -> Result<()>[src]

Trait Implementations

impl<T: Debug + Read + Write> Debug for PelcoDPort<T>[src]

impl<T: Read + Write> Read for PelcoDPort<T>[src]

impl<T: Read + Write> Write for PelcoDPort<T>[src]

Auto Trait Implementations

impl<T> Send for PelcoDPort<T> where
    T: Send

impl<T> Sync for PelcoDPort<T> where
    T: Sync

impl<T> Unpin for PelcoDPort<T> where
    T: Unpin

impl<T> UnwindSafe for PelcoDPort<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for PelcoDPort<T> where
    T: RefUnwindSafe

Blanket Implementations

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

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> 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]