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