Struct fuchsia_inspect::types::UintArrayProperty
source · pub struct UintArrayProperty { /* private fields */ }
Expand description
Inspect uint array 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 ArrayProperty for UintArrayProperty
impl ArrayProperty for UintArrayProperty
source§fn set(&self, index: usize, value: impl Into<Self::Type>)
fn set(&self, index: usize, value: impl Into<Self::Type>)
Sets the array value to
value
at the given index
.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
ArrayProperty
on which it is called.source§impl Debug for UintArrayProperty
impl Debug for UintArrayProperty
source§impl Default for UintArrayProperty
impl Default for UintArrayProperty
source§fn default() -> UintArrayProperty
fn default() -> UintArrayProperty
Returns the “default value” for a type. Read more
source§impl PartialEq for UintArrayProperty
impl PartialEq for UintArrayProperty
source§fn eq(&self, other: &UintArrayProperty) -> bool
fn eq(&self, other: &UintArrayProperty) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for UintArrayProperty
impl InspectType for UintArrayProperty
impl StructuralPartialEq for UintArrayProperty
Auto Trait Implementations§
impl Freeze for UintArrayProperty
impl !RefUnwindSafe for UintArrayProperty
impl Send for UintArrayProperty
impl Sync for UintArrayProperty
impl Unpin for UintArrayProperty
impl !UnwindSafe for UintArrayProperty
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