pub struct AddDeviceNotificationRequest {
pub index_group: u32,
pub index_offset: u32,
pub length: u32,
pub transmission_mode: AdsTransMode,
pub max_delay: u32,
pub cycle_time: u32,
pub reserved: [u8; 16],
pub command_id: CommandID,
}
Expand description
ADS Add Device Notification
Fields§
§index_group: u32
§index_offset: u32
§length: u32
§transmission_mode: AdsTransMode
§max_delay: u32
§cycle_time: u32
§reserved: [u8; 16]
§command_id: CommandID
Implementations§
Trait Implementations§
Source§impl Clone for AddDeviceNotificationRequest
impl Clone for AddDeviceNotificationRequest
Source§fn clone(&self) -> AddDeviceNotificationRequest
fn clone(&self) -> AddDeviceNotificationRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AddDeviceNotificationRequest
impl Debug for AddDeviceNotificationRequest
Source§impl From<AddDeviceNotificationRequest> for Request
impl From<AddDeviceNotificationRequest> for Request
Source§fn from(request: AddDeviceNotificationRequest) -> Self
fn from(request: AddDeviceNotificationRequest) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AddDeviceNotificationRequest
impl PartialEq for AddDeviceNotificationRequest
Source§fn eq(&self, other: &AddDeviceNotificationRequest) -> bool
fn eq(&self, other: &AddDeviceNotificationRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl TryInto<AddDeviceNotificationRequest> for Request
impl TryInto<AddDeviceNotificationRequest> for Request
Source§type Error = TryIntoError
type Error = TryIntoError
The type returned in the event of a conversion error.
impl Eq for AddDeviceNotificationRequest
impl StructuralPartialEq for AddDeviceNotificationRequest
Auto Trait Implementations§
impl Freeze for AddDeviceNotificationRequest
impl RefUnwindSafe for AddDeviceNotificationRequest
impl Send for AddDeviceNotificationRequest
impl Sync for AddDeviceNotificationRequest
impl Unpin for AddDeviceNotificationRequest
impl UnwindSafe for AddDeviceNotificationRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more