pub enum SignalType {
Param,
Event,
Stream,
Gesture,
Timeline,
}Expand description
Signal types
Variants§
Param
Stateful parameter with revision tracking
Event
Ephemeral trigger event
Stream
High-rate continuous data
Gesture
Phased input (touch/pen/motion)
Timeline
Time-indexed automation
Implementations§
Source§impl SignalType
impl SignalType
pub fn default_qos(&self) -> QoS
Trait Implementations§
Source§impl Clone for SignalType
impl Clone for SignalType
Source§fn clone(&self) -> SignalType
fn clone(&self) -> SignalType
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 SignalType
impl Debug for SignalType
Source§impl<'de> Deserialize<'de> for SignalType
impl<'de> Deserialize<'de> for SignalType
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SignalType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SignalType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for SignalType
impl Hash for SignalType
Source§impl PartialEq for SignalType
impl PartialEq for SignalType
Source§impl Serialize for SignalType
impl Serialize for SignalType
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for SignalType
impl Eq for SignalType
impl StructuralPartialEq for SignalType
Auto Trait Implementations§
impl Freeze for SignalType
impl RefUnwindSafe for SignalType
impl Send for SignalType
impl Sync for SignalType
impl Unpin for SignalType
impl UnwindSafe for SignalType
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