Skip to main content

Set

Struct Set 

Source
pub struct Set<T>(/* private fields */);
Expand description

A set of types.

Examples of valid sets include:

  • Set<()> - an empty set
  • Set<(A, B, C)> - a set containing types A, B, and C

Trait Implementations§

Source§

impl<T> Debug for Set<T>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<T> TypeSet for Set<T>
where T: TypeSet,

Source§

type Set = <T as TypeSet>::Set

The underlying set type, which is a private marker-trait.
Source§

fn members() -> &'static [TypeId]
where Self: 'static,

Returns a static slice of TypeIds representing the members of the set.

Auto Trait Implementations§

§

impl<T> Freeze for Set<T>
where PhantomData<fn() -> T>: Freeze,

§

impl<T> RefUnwindSafe for Set<T>
where PhantomData<fn() -> T>: RefUnwindSafe,

§

impl<T> Send for Set<T>
where PhantomData<fn() -> T>: Send,

§

impl<T> Sync for Set<T>
where PhantomData<fn() -> T>: Sync,

§

impl<T> Unpin for Set<T>
where PhantomData<fn() -> T>: Unpin,

§

impl<T> UnsafeUnpin for Set<T>
where PhantomData<fn() -> T>: UnsafeUnpin,

§

impl<T> UnwindSafe for Set<T>
where PhantomData<fn() -> T>: UnwindSafe,

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<E, T> Contains<E> for T
where T: Contains1<E> + ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T, R> SetEqual<R> for T
where T: TypeSet + SubsetOf<R> + SupersetOf<R>, R: TypeSet,

Source§

impl<T, R> SubsetOf<R> for T
where T: TypeSet, R: TypeSet, <T as TypeSet>::Set: SubsetOf<<R as TypeSet>::Set>,

Source§

impl<S1, S2> SupersetOf<S2> for S1
where S2: SubsetOf<S1> + ?Sized, S1: ?Sized,

Source§

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

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.