[][src]Struct devbox_build::Set

pub struct Set<T> { /* fields omitted */ }

Ordered list of owned resources

This is like Vec with '+' overloaded for easy adding of resources. Resources added by reference are cloned.

Trait Implementations

impl<'_, R> Add<&'_ R> for Set<R> where
    R: Clone
[src]

type Output = Set<R>

The resulting type after applying the + operator.

impl<R> Add<R> for Set<R>[src]

type Output = Set<R>

The resulting type after applying the + operator.

impl<T> AsRef<Set<T>> for Set<T>[src]

impl<T: Clone> Clone for Set<T>[src]

impl<T: Debug> Debug for Set<T>[src]

impl<T> From<Vec<T>> for Set<T>[src]

impl<T> IntoIterator for Set<T>[src]

type Item = T

The type of the elements being iterated over.

type IntoIter = IntoIter<Self::Item>

Which kind of iterator are we turning this into?

impl<R> Resource for Set<R> where
    R: Resource
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Set<T> where
    T: RefUnwindSafe

impl<T> Send for Set<T> where
    T: Send

impl<T> Sync for Set<T> where
    T: Sync

impl<T> Unpin for Set<T> where
    T: Unpin

impl<T> UnwindSafe for Set<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.