[][src]Struct modbus::tcp::Transport

pub struct Transport { /* fields omitted */ }

Context object which holds state for all modbus operations.

Methods

impl Transport[src]

pub fn new(addr: &str) -> Result<Transport>[src]

Create a new context context object and connect it to addr on modbus-tcp default port (502)

pub fn new_with_cfg(addr: &str, cfg: Config) -> Result<Transport>[src]

Create a new context object and connect it to addr on port port

pub fn close(&mut self) -> Result<()>[src]

Trait Implementations

impl Client for Transport[src]

fn read_coils(&mut self, addr: u16, count: u16) -> Result<Vec<Coil>>[src]

Read count bits starting at address addr.

fn read_discrete_inputs(&mut self, addr: u16, count: u16) -> Result<Vec<Coil>>[src]

Read count input bits starting at address addr.

fn read_holding_registers(&mut self, addr: u16, count: u16) -> Result<Vec<u16>>[src]

Read count 16bit registers starting at address addr.

fn read_input_registers(&mut self, addr: u16, count: u16) -> Result<Vec<u16>>[src]

Read count 16bit input registers starting at address addr.

fn write_single_coil(&mut self, addr: u16, value: Coil) -> Result<()>[src]

Write a single coil (bit) to address addr.

fn write_single_register(&mut self, addr: u16, value: u16) -> Result<()>[src]

Write a single 16bit register to address addr.

fn write_multiple_coils(&mut self, addr: u16, values: &[Coil]) -> Result<()>[src]

Write a multiple coils (bits) starting at address addr.

fn write_multiple_registers(&mut self, addr: u16, values: &[u16]) -> Result<()>[src]

Write a multiple 16bit registers starting at address addr.

fn set_uid(&mut self, uid: u8)[src]

Set the unit identifier.

Auto Trait Implementations

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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