[][src]Struct sdset::duo::OpBuilder

pub struct OpBuilder<'a, T: 'a> { /* fields omitted */ }

Type used to make a set operation on two slices only.

Methods

impl<'a, T> OpBuilder<'a, T>[src]

pub fn new(a: &'a Set<T>, b: &'a Set<T>) -> Self[src]

Construct a type with two slices.

pub fn union(self) -> Union<'a, T>[src]

Prepare the two slices for the union set operation.

pub fn intersection(self) -> Intersection<'a, T>[src]

Prepare the two slices for the intersection set operation.

pub fn difference(self) -> Difference<'a, T>[src]

Prepare the two slices for the difference set operation.

pub fn symmetric_difference(self) -> SymmetricDifference<'a, T>[src]

Prepare the two slices for the difference set operation.

Trait Implementations

impl<'a, T: Clone + 'a> Clone for OpBuilder<'a, T>[src]

impl<'a, T: Copy + 'a> Copy for OpBuilder<'a, T>[src]

Auto Trait Implementations

impl<'a, T> Send for OpBuilder<'a, T> where
    T: Sync

impl<'a, T> Sync for OpBuilder<'a, T> where
    T: Sync

impl<'a, T> Unpin for OpBuilder<'a, T>

impl<'a, T> UnwindSafe for OpBuilder<'a, T> where
    T: RefUnwindSafe

impl<'a, T> RefUnwindSafe for OpBuilder<'a, T> where
    T: RefUnwindSafe

Blanket Implementations

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

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

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 = !

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.

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

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

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