pub enum SignalAnchor {
FixedInterval,
Event {
event: String,
},
}Expand description
What establishes a self-signal’s cadence relative to the external surface.
Variants§
FixedInterval
The behavior follows its own periodic signature, so analysts can find it without an external event grid.
Event
The behavior follows an external event boundary, which can make its shape indistinguishable from the surface mechanism without this declaration.
Trait Implementations§
Source§impl Clone for SignalAnchor
impl Clone for SignalAnchor
Source§fn clone(&self) -> SignalAnchor
fn clone(&self) -> SignalAnchor
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 moreSource§impl Debug for SignalAnchor
impl Debug for SignalAnchor
Source§impl<'de> Deserialize<'de> for SignalAnchor
impl<'de> Deserialize<'de> for SignalAnchor
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
impl Eq for SignalAnchor
Source§impl PartialEq for SignalAnchor
impl PartialEq for SignalAnchor
Source§impl Serialize for SignalAnchor
impl Serialize for SignalAnchor
impl StructuralPartialEq for SignalAnchor
Auto Trait Implementations§
impl Freeze for SignalAnchor
impl RefUnwindSafe for SignalAnchor
impl Send for SignalAnchor
impl Sync for SignalAnchor
impl Unpin for SignalAnchor
impl UnsafeUnpin for SignalAnchor
impl UnwindSafe for SignalAnchor
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