pub struct COVNotificationValue {
pub property_identifier: PropertyIdentifier,
pub property_array_index: Option<u32>,
pub value: Vec<u8>,
pub time_of_change: Option<Vec<u8>>,
}Expand description
A single value entry in a COV notification list.
Fields§
§property_identifier: PropertyIdentifier§property_array_index: Option<u32>§value: Vec<u8>Raw application-tagged bytes for the value.
time_of_change: Option<Vec<u8>>Trait Implementations§
Source§impl Clone for COVNotificationValue
impl Clone for COVNotificationValue
Source§fn clone(&self) -> COVNotificationValue
fn clone(&self) -> COVNotificationValue
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 Debug for COVNotificationValue
impl Debug for COVNotificationValue
Source§impl PartialEq for COVNotificationValue
impl PartialEq for COVNotificationValue
impl Eq for COVNotificationValue
impl StructuralPartialEq for COVNotificationValue
Auto Trait Implementations§
impl Freeze for COVNotificationValue
impl RefUnwindSafe for COVNotificationValue
impl Send for COVNotificationValue
impl Sync for COVNotificationValue
impl Unpin for COVNotificationValue
impl UnsafeUnpin for COVNotificationValue
impl UnwindSafe for COVNotificationValue
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