pub enum HistoryReadAction {
ReadEventDetails(ReadEventDetails),
ReadRawModifiedDetails(ReadRawModifiedDetails),
ReadProcessedDetails(ReadProcessedDetails),
ReadAtTimeDetails(ReadAtTimeDetails),
}
Expand description
Enumeration used with Session::history_read()
Variants§
ReadEventDetails(ReadEventDetails)
Read historical events.
ReadRawModifiedDetails(ReadRawModifiedDetails)
Read raw data values.
ReadProcessedDetails(ReadProcessedDetails)
Read data values with processing.
ReadAtTimeDetails(ReadAtTimeDetails)
Read data values at specific timestamps.
Trait Implementations§
Source§impl Clone for HistoryReadAction
impl Clone for HistoryReadAction
Source§fn clone(&self) -> HistoryReadAction
fn clone(&self) -> HistoryReadAction
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 HistoryReadAction
impl Debug for HistoryReadAction
Source§impl From<HistoryReadAction> for ExtensionObject
impl From<HistoryReadAction> for ExtensionObject
Source§fn from(action: HistoryReadAction) -> Self
fn from(action: HistoryReadAction) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for HistoryReadAction
impl !RefUnwindSafe for HistoryReadAction
impl Send for HistoryReadAction
impl Sync for HistoryReadAction
impl Unpin for HistoryReadAction
impl !UnwindSafe for HistoryReadAction
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