Trait fuchsia_inspect::types::NumericProperty
source · pub trait NumericProperty<'t>: Property<'t> {
// Required methods
fn add(
&self,
value: <Self as Property<'t>>::Type,
) -> Option<<Self as Property<'t>>::Type>;
fn subtract(
&self,
value: <Self as Property<'t>>::Type,
) -> Option<<Self as Property<'t>>::Type>;
}
Expand description
Trait implemented by numeric properties providing common operations.
Required Methods§
Object Safety§
This trait is not object safe.