pub struct SdoRequest {
pub index: u16,
pub sub_index: u8,
pub kind: SdoRequestKind,
pub sent_at: Instant,
}Expand description
Metadata for an in-flight SDO request.
Fields§
§index: u16CoE object dictionary index (e.g. 0x6060).
sub_index: u8CoE sub-index.
kind: SdoRequestKindWhether this is a read or write.
sent_at: InstantWhen the request was sent (for timeout detection).
Auto Trait Implementations§
impl Freeze for SdoRequest
impl RefUnwindSafe for SdoRequest
impl Send for SdoRequest
impl Sync for SdoRequest
impl Unpin for SdoRequest
impl UnsafeUnpin for SdoRequest
impl UnwindSafe for SdoRequest
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