[][src]Struct ethercat_soem_sys::ec_ODlistt

#[repr(C)]pub struct ec_ODlistt {
    pub Slave: uint16,
    pub Entries: uint16,
    pub Index: [uint16; 1024],
    pub DataType: [uint16; 1024],
    pub ObjectCode: [uint8; 1024],
    pub MaxSub: [uint8; 1024],
    pub Name: [[c_char; 41]; 1024],
}

Fields

Slave: uint16

slave number

Entries: uint16

number of entries in list

Index: [uint16; 1024]

array of indexes

DataType: [uint16; 1024]

array of datatypes, see EtherCAT specification

ObjectCode: [uint8; 1024]

array of object codes, see EtherCAT specification

MaxSub: [uint8; 1024]

number of subindexes for each index

Name: [[c_char; 41]; 1024]

textual description of each index

Trait Implementations

impl Clone for ec_ODlistt[src]

impl Copy for ec_ODlistt[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.