Type Alias ambient_api::prelude::U64Input
source · pub type U64Input = ParseableInput<u64>;
Expand description
A ParseableInput for u64.
Aliased Type§
struct U64Input {
pub value: u64,
pub on_change: Arc<CbDebuggable<dyn Fn(u64) + Sync + Send>>,
}
Fields§
§value: u64
The current value.
on_change: Arc<CbDebuggable<dyn Fn(u64) + Sync + Send>>
Callback for when the value changes.