pub struct GetListResponse<'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 val_list: List<'i>,
pub list_signature: Option<Signature<'i>>,
pub act_gateway_time: Option<Time>,
}
Available on crate feature
alloc
only.Expand description
SML_GetList.Res
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
val_list: List<'i>
list of data values
list_signature: Option<Signature<'i>>
signature of the list - whatever that means?!
act_gateway_time: Option<Time>
optional gateway time information
Trait Implementations§
Source§impl<'i> Clone for GetListResponse<'i>
impl<'i> Clone for GetListResponse<'i>
Source§fn clone(&self) -> GetListResponse<'i>
fn clone(&self) -> GetListResponse<'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 GetListResponse<'i>
impl<'i> Debug for GetListResponse<'i>
Source§impl<'i> PartialEq for GetListResponse<'i>
impl<'i> PartialEq for GetListResponse<'i>
impl<'i> Eq for GetListResponse<'i>
impl<'i> StructuralPartialEq for GetListResponse<'i>
Auto Trait Implementations§
impl<'i> Freeze for GetListResponse<'i>
impl<'i> RefUnwindSafe for GetListResponse<'i>
impl<'i> Send for GetListResponse<'i>
impl<'i> Sync for GetListResponse<'i>
impl<'i> Unpin for GetListResponse<'i>
impl<'i> UnwindSafe for GetListResponse<'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