Struct fuchsia_inspect::types::UintProperty
source · pub struct UintProperty { /* private fields */ }
Expand description
Inspect uint property data type.
NOTE: do not rely on PartialEq implementation for true comparison. Instead leverage the reader.
NOTE: Operations on a Default value are no-ops.
Trait Implementations§
source§impl Debug for UintProperty
impl Debug for UintProperty
source§impl Default for UintProperty
impl Default for UintProperty
source§fn default() -> UintProperty
fn default() -> UintProperty
Returns the “default value” for a type. Read more
source§impl NumericProperty<'_> for UintProperty
impl NumericProperty<'_> for UintProperty
source§impl PartialEq for UintProperty
impl PartialEq for UintProperty
source§fn eq(&self, other: &UintProperty) -> bool
fn eq(&self, other: &UintProperty) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'t> Property<'t> for UintProperty
impl<'t> Property<'t> for UintProperty
source§fn atomic_update<R, F: FnOnce(&Self) -> R>(&self, update_fn: F) -> R
fn atomic_update<R, F: FnOnce(&Self) -> R>(&self, update_fn: F) -> R
Takes a function to execute as under a single lock of the Inspect VMO. This function
receives a reference to the
Property
on which it is called.impl Eq for UintProperty
impl InspectType for UintProperty
impl StructuralPartialEq for UintProperty
Auto Trait Implementations§
impl Freeze for UintProperty
impl !RefUnwindSafe for UintProperty
impl Send for UintProperty
impl Sync for UintProperty
impl Unpin for UintProperty
impl !UnwindSafe for UintProperty
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