pub struct GetListResponseStart<'i> {
pub client_id: Option<OctetStr<'i>>,
pub server_id: OctetStr<'i>,
pub list_name: Option<OctetStr<'i>>,
pub act_sensor_time: Option<Time>,
pub num_vals: u32,
}
Expand description
Start event of a GetListResponse
message.
Fields§
§client_id: Option<OctetStr<'i>>
identification of the client
server_id: OctetStr<'i>
identification of the server
list_name: Option<OctetStr<'i>>
name of the list
act_sensor_time: Option<Time>
optional sensor time information
num_vals: u32
number of data values
Trait Implementations§
Source§impl<'i> Clone for GetListResponseStart<'i>
impl<'i> Clone for GetListResponseStart<'i>
Source§fn clone(&self) -> GetListResponseStart<'i>
fn clone(&self) -> GetListResponseStart<'i>
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<'i> Debug for GetListResponseStart<'i>
impl<'i> Debug for GetListResponseStart<'i>
Source§impl<'i> PartialEq for GetListResponseStart<'i>
impl<'i> PartialEq for GetListResponseStart<'i>
impl<'i> Eq for GetListResponseStart<'i>
impl<'i> StructuralPartialEq for GetListResponseStart<'i>
Auto Trait Implementations§
impl<'i> Freeze for GetListResponseStart<'i>
impl<'i> RefUnwindSafe for GetListResponseStart<'i>
impl<'i> Send for GetListResponseStart<'i>
impl<'i> Sync for GetListResponseStart<'i>
impl<'i> Unpin for GetListResponseStart<'i>
impl<'i> UnwindSafe for GetListResponseStart<'i>
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