Struct ModbusSlave

Source
pub struct ModbusSlave<const L1: usize, const L2: usize> { /* private fields */ }
Expand description

Modbus Slave

Implementations§

Source§

impl<'a, const L1: usize, const L2: usize> ModbusSlave<L1, L2>

Source

pub fn new( modbus_id: u8, holding_registers: DataModel<L1, u16>, input_registers: DataModel<L2, u16>, ) -> ModbusSlave<L1, L2>

Source

pub fn get_modbus_id(&self) -> u8

Source

pub fn set_modbus_id(&mut self, modbus_id: u8)

Source

pub fn get_holding_registers(&self) -> &DataModel<L1, u16>

Source

pub fn get_holding_registers_mut(&mut self) -> &mut DataModel<L1, u16>

Source

pub fn get_input_registers(&self) -> &DataModel<L2, u16>

Source

pub fn get_input_registers_mut(&mut self) -> &mut DataModel<L2, u16>

Source

pub fn build_exception_response_packet( &self, fc: u8, exception: Exception, ) -> [u8; 5]

Trait Implementations§

Source§

impl<const L1: usize, const L2: usize> Debug for ModbusSlave<L1, L2>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<const L1: usize, const L2: usize> Freeze for ModbusSlave<L1, L2>

§

impl<const L1: usize, const L2: usize> RefUnwindSafe for ModbusSlave<L1, L2>

§

impl<const L1: usize, const L2: usize> Send for ModbusSlave<L1, L2>

§

impl<const L1: usize, const L2: usize> Sync for ModbusSlave<L1, L2>

§

impl<const L1: usize, const L2: usize> Unpin for ModbusSlave<L1, L2>

§

impl<const L1: usize, const L2: usize> UnwindSafe for ModbusSlave<L1, L2>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.