pub struct ReadRangeAck<'a> {
pub object_id: ObjectId,
pub property_id: PropertyId,
pub array_index: u32,
pub result_flags: BitString<'a>,
pub item_count: usize,
pub item_data: ReadRangeItems<'a>,
}Fields§
§object_id: ObjectId§property_id: PropertyId§array_index: u32§result_flags: BitString<'a>§item_count: usize§item_data: ReadRangeItems<'a>Implementations§
Trait Implementations§
Source§impl<'a> Clone for ReadRangeAck<'a>
impl<'a> Clone for ReadRangeAck<'a>
Source§fn clone(&self) -> ReadRangeAck<'a>
fn clone(&self) -> ReadRangeAck<'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 moreAuto Trait Implementations§
impl<'a> Freeze for ReadRangeAck<'a>
impl<'a> RefUnwindSafe for ReadRangeAck<'a>
impl<'a> Send for ReadRangeAck<'a>
impl<'a> Sync for ReadRangeAck<'a>
impl<'a> Unpin for ReadRangeAck<'a>
impl<'a> UnwindSafe for ReadRangeAck<'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