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