Type Alias ambient_api::prelude::U64Input

source ·
pub type U64Input = ParseableInput<u64>;
Expand description

Aliased Type§

struct U64Input {
    pub value: u64,
    pub on_change: Arc<CbDebuggable<dyn Fn(u64) + Send + Sync>>,
}

Fields§

§value: u64

The current value.

§on_change: Arc<CbDebuggable<dyn Fn(u64) + Send + Sync>>

Callback for when the value changes.