pub struct BoardEntry {
pub timestamp: DateTime<Utc>,
pub source: ComponentId,
pub kind: BoardEntryKind,
pub operation: String,
pub payload: Value,
}Expand description
A single entry in the Board.
Fields§
§timestamp: DateTime<Utc>When the entry was recorded.
source: ComponentIdWhich component produced this entry.
kind: BoardEntryKindWhat kind of entry (Output or Event).
operation: StringOperation name (e.g., “display”, “complete”).
payload: ValueEntry payload data.
Trait Implementations§
Source§impl Clone for BoardEntry
impl Clone for BoardEntry
Source§fn clone(&self) -> BoardEntry
fn clone(&self) -> BoardEntry
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 BoardEntry
impl Debug for BoardEntry
Source§impl<'de> Deserialize<'de> for BoardEntry
impl<'de> Deserialize<'de> for BoardEntry
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 BoardEntry
impl RefUnwindSafe for BoardEntry
impl Send for BoardEntry
impl Sync for BoardEntry
impl Unpin for BoardEntry
impl UnsafeUnpin for BoardEntry
impl UnwindSafe for BoardEntry
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