Struct ArrayValueTree
pub struct ArrayValueTree<T> { /* private fields */ }
A ValueTree operating over a fixed-size array.
Trait Implementations
impl<T: Clone> Clone for ArrayValueTree<T>
fn clone(&self) -> ArrayValueTree<T>
impl<T: Copy> Copy for ArrayValueTree<T>
impl<T: Debug> Debug for ArrayValueTree<T>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<T: ValueTree, const N: usize> ValueTree for ArrayValueTree<[T; N]>
type Value = [<T as ValueTree>::Value; N];fn current(&self) -> [T::Value; N]fn simplify(&mut self) -> boolfn complicate(&mut self) -> bool
Auto Trait Implementations
impl<T> Freeze for ArrayValueTree<T>
where
T: Freeze,
impl<T> RefUnwindSafe for ArrayValueTree<T>
where
T: RefUnwindSafe,
impl<T> Send for ArrayValueTree<T>
where
T: Send,
impl<T> Sync for ArrayValueTree<T>
where
T: Sync,
impl<T> Unpin for ArrayValueTree<T>
where
T: Unpin,
impl<T> UnsafeUnpin for ArrayValueTree<T>
where
T: UnsafeUnpin,
impl<T> UnwindSafe for ArrayValueTree<T>
where
T: UnwindSafe,
Blanket Implementations
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for ArrayValueTree<T>
where
ST: ?Sized,
DT: ?Sized,
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for ArrayValueTree<T>
where
ST: ?Sized,
DT: ?Sized,
impl<T> Any for ArrayValueTree<T>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for ArrayValueTree<T>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for ArrayValueTree<T>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for ArrayValueTree<T>
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for ArrayValueTree<T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> Read<Exclusive, BecauseExclusive> for ArrayValueTree<T>
where
T: ?Sized,
impl<T> ToOwned for ArrayValueTree<T>
where
T: Clone,
type Owned = T;fn to_owned(&self) -> Tfn clone_into(&self, target: &mut T)
impl<T, U> Into<U> for ArrayValueTree<T>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for ArrayValueTree<T>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for ArrayValueTree<T>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
impl<V, T> VZip<V> for ArrayValueTree<T>
where
V: MultiLane<T>,
fn vzip(self) -> V