pub struct ReadRangeAck {
pub object_identifier: ObjectIdentifier,
pub property_identifier: PropertyIdentifier,
pub property_array_index: Option<u32>,
pub result_flags: (bool, bool, bool),
pub item_count: u32,
pub item_data: Vec<u8>,
pub first_sequence_number: Option<u32>,
}Expand description
ReadRange-ACK service parameters.
Fields§
§object_identifier: ObjectIdentifier§property_identifier: PropertyIdentifier§property_array_index: Option<u32>§result_flags: (bool, bool, bool)Result flags: first_item, last_item, more_items.
item_count: u32§item_data: Vec<u8>Raw item data (application-layer interprets content).
first_sequence_number: Option<u32>Optional first sequence number (context tag [6]).
Implementations§
Trait Implementations§
Source§impl Clone for ReadRangeAck
impl Clone for ReadRangeAck
Source§fn clone(&self) -> ReadRangeAck
fn clone(&self) -> ReadRangeAck
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 moreAuto Trait Implementations§
impl Freeze for ReadRangeAck
impl RefUnwindSafe for ReadRangeAck
impl Send for ReadRangeAck
impl Sync for ReadRangeAck
impl Unpin for ReadRangeAck
impl UnsafeUnpin for ReadRangeAck
impl UnwindSafe for ReadRangeAck
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