Trait Source
Source pub trait Source {
type Item;
// Required method
fn get(&self) -> Self::Item;
}
Expand description
A signal that can be read through the supervisor’s get verb.
The value type read from the signal.
Return a snapshot of the signal’s current value.
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Source§Available on target_has_atomic=8 only.
Source§Available on target_has_atomic=8 only.
Source§Available on target_has_atomic=16 only.
Source§Available on target_has_atomic=32 only.
Source§Available on target_has_atomic=64 only.
Source§Available on target_has_atomic=ptr only.
Source§Available on target_has_atomic=8 only.
Source§Available on target_has_atomic=16 only.
Source§Available on target_has_atomic=32 only.
Source§Available on target_has_atomic=64 only.
Source§Available on target_has_atomic=ptr only.
Source§Available on crate feature dataflow only.