pub struct SignalEntry {
pub key: String,
pub cell: Option<SignalTimeValue>,
}Expand description
A combination of a signal key and an optional signal time/value
Fields§
§key: String§cell: Option<SignalTimeValue>Trait Implementations§
Source§impl Clone for SignalEntry
impl Clone for SignalEntry
Source§fn clone(&self) -> SignalEntry
fn clone(&self) -> SignalEntry
Returns a copy 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<'de> Deserialize<'de> for SignalEntry
impl<'de> Deserialize<'de> for SignalEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SignalEntry
impl RefUnwindSafe for SignalEntry
impl Send for SignalEntry
impl Sync for SignalEntry
impl Unpin for SignalEntry
impl UnwindSafe for SignalEntry
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