pub struct EventNotificationRequest<'a> {
pub process_id: u32,
pub initiating_device_id: ObjectId,
pub event_object_id: ObjectId,
pub timestamp: TimeStamp,
pub notification_class: u32,
pub priority: u32,
pub event_type: u32,
pub message_text: Option<&'a str>,
pub notify_type: u32,
pub ack_required: Option<bool>,
pub from_state: u32,
pub to_state: u32,
}Fields§
§process_id: u32§initiating_device_id: ObjectId§event_object_id: ObjectId§timestamp: TimeStamp§notification_class: u32§priority: u32§event_type: u32§message_text: Option<&'a str>§notify_type: u32§ack_required: Option<bool>§from_state: u32§to_state: u32Implementations§
Source§impl<'a> EventNotificationRequest<'a>
impl<'a> EventNotificationRequest<'a>
pub fn decode_after_header(r: &mut Reader<'a>) -> Result<Self, DecodeError>
Trait Implementations§
Source§impl<'a> Clone for EventNotificationRequest<'a>
impl<'a> Clone for EventNotificationRequest<'a>
Source§fn clone(&self) -> EventNotificationRequest<'a>
fn clone(&self) -> EventNotificationRequest<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for EventNotificationRequest<'a>
impl<'a> Debug for EventNotificationRequest<'a>
Source§impl<'a> PartialEq for EventNotificationRequest<'a>
impl<'a> PartialEq for EventNotificationRequest<'a>
Source§fn eq(&self, other: &EventNotificationRequest<'a>) -> bool
fn eq(&self, other: &EventNotificationRequest<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> Copy for EventNotificationRequest<'a>
impl<'a> Eq for EventNotificationRequest<'a>
impl<'a> StructuralPartialEq for EventNotificationRequest<'a>
Auto Trait Implementations§
impl<'a> Freeze for EventNotificationRequest<'a>
impl<'a> RefUnwindSafe for EventNotificationRequest<'a>
impl<'a> Send for EventNotificationRequest<'a>
impl<'a> Sync for EventNotificationRequest<'a>
impl<'a> Unpin for EventNotificationRequest<'a>
impl<'a> UnsafeUnpin for EventNotificationRequest<'a>
impl<'a> UnwindSafe for EventNotificationRequest<'a>
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