Struct RangeSubsetValueTree

pub struct RangeSubsetValueTree<T> { /* private fields */ }

RangeSubsetValueTree corresponding to RangeSubset.

Trait Implementations

impl<T> ValueTree for RangeSubsetValueTree<T> where T: Copy + Eq + Hash + Debug, Range<T>: ExactSizeIterator<Item = T>,

type Value = Vec<T>;
fn current(&self) -> Self::Value
fn simplify(&mut self) -> bool
fn complicate(&mut self) -> bool

impl<T: Clone> Clone for RangeSubsetValueTree<T>

fn clone(&self) -> RangeSubsetValueTree<T>

impl<T: Debug> Debug for RangeSubsetValueTree<T>

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Auto Trait Implementations

impl<T> Freeze for RangeSubsetValueTree<T> where Vec<T>: Freeze,

impl<T> RefUnwindSafe for RangeSubsetValueTree<T> where Vec<T>: RefUnwindSafe,

impl<T> Send for RangeSubsetValueTree<T> where Vec<T>: Send,

impl<T> Sync for RangeSubsetValueTree<T> where Vec<T>: Sync,

impl<T> Unpin for RangeSubsetValueTree<T> where Vec<T>: Unpin,

impl<T> UnsafeUnpin for RangeSubsetValueTree<T> where Vec<T>: UnsafeUnpin,

impl<T> UnwindSafe for RangeSubsetValueTree<T> where Vec<T>: UnwindSafe,

Blanket Implementations

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for RangeSubsetValueTree<T> where ST: ?Sized, DT: ?Sized,

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for RangeSubsetValueTree<T> where ST: ?Sized, DT: ?Sized,

impl<T> Any for RangeSubsetValueTree<T> where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for RangeSubsetValueTree<T> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for RangeSubsetValueTree<T> where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> CloneToUninit for RangeSubsetValueTree<T> where T: Clone,

unsafe fn clone_to_uninit(&self, dest: *mut u8)

impl<T> From<T> for RangeSubsetValueTree<T>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> Read<Exclusive, BecauseExclusive> for RangeSubsetValueTree<T> where T: ?Sized,

impl<T> ToOwned for RangeSubsetValueTree<T> where T: Clone,

type Owned = T;
fn to_owned(&self) -> T
fn clone_into(&self, target: &mut T)

impl<T, U> Into<U> for RangeSubsetValueTree<T> where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for RangeSubsetValueTree<T> where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for RangeSubsetValueTree<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 RangeSubsetValueTree<T> where V: MultiLane<T>,

fn vzip(self) -> V