pub struct SignalEntry {
pub ts: String,
pub kind: SignalKind,
pub text: String,
pub event_id: String,
pub supersedes: Option<String>,
}Fields§
§ts: String§kind: SignalKind§text: String§event_id: String§supersedes: Option<String>Event ID this decision supersedes (from refs.provenance).
Trait Implementations§
Source§impl Clone for SignalEntry
impl Clone for SignalEntry
Source§fn clone(&self) -> SignalEntry
fn clone(&self) -> SignalEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SignalEntry
impl RefUnwindSafe for SignalEntry
impl Send for SignalEntry
impl Sync for SignalEntry
impl Unpin for SignalEntry
impl UnsafeUnpin 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