[][src]Struct bv::adapter::BitZip

pub struct BitZip<T, U, F> { /* fields omitted */ }

The result of BitsExt::bit_zip.

Trait Implementations

impl<T, U, F> Bits for BitZip<T, U, F> where
    T: Bits,
    U: Bits<Block = T::Block>,
    F: Fn(T::Block, T::Block) -> T::Block
[src]

type Block = T::Block

The underlying block type used to store the bits of the vector.

impl<Block, R, T, U, F> BitSliceable<R> for BitZip<T, U, F> where
    Block: BlockType,
    R: Clone,
    T: BitSliceable<R, Block = Block>,
    U: BitSliceable<R, Block = Block>,
    F: Fn(Block, Block) -> Block, 
[src]

type Slice = BitZip<T::Slice, U::Slice, F>

The type of the slice produced.

impl<'a, T: Bits, U: Bits<Block = T::Block>, F: Fn(T::Block, T::Block) -> T::Block> BitSliceable<Range<u64>> for &'a BitZip<T, U, F>[src]

type Slice = BitSliceAdapter<Self>

The type of the slice produced.

impl<'a, T: Bits, U: Bits<Block = T::Block>, F: Fn(T::Block, T::Block) -> T::Block> BitSliceable<RangeFrom<u64>> for &'a BitZip<T, U, F>[src]

type Slice = BitSliceAdapter<Self>

The type of the slice produced.

impl<'a, T: Bits, U: Bits<Block = T::Block>, F: Fn(T::Block, T::Block) -> T::Block> BitSliceable<RangeTo<u64>> for &'a BitZip<T, U, F>[src]

type Slice = BitSliceAdapter<Self>

The type of the slice produced.

impl<'a, T: Bits, U: Bits<Block = T::Block>, F: Fn(T::Block, T::Block) -> T::Block> BitSliceable<RangeFull> for &'a BitZip<T, U, F>[src]

type Slice = BitSliceAdapter<Self>

The type of the slice produced.

impl<'a, T: Bits, U: Bits<Block = T::Block>, F: Fn(T::Block, T::Block) -> T::Block> BitSliceable<RangeInclusive<u64>> for &'a BitZip<T, U, F>[src]

type Slice = BitSliceAdapter<Self>

The type of the slice produced.

impl<'a, T: Bits, U: Bits<Block = T::Block>, F: Fn(T::Block, T::Block) -> T::Block> BitSliceable<RangeToInclusive<u64>> for &'a BitZip<T, U, F>[src]

type Slice = BitSliceAdapter<Self>

The type of the slice produced.

impl<T: Clone, U: Clone, F: Clone> Clone for BitZip<T, U, F>[src]

impl<T, U, F, V> PartialEq<V> for BitZip<T, U, F> where
    T: Bits,
    U: Bits<Block = T::Block>,
    V: Bits<Block = T::Block>,
    F: Fn(T::Block, T::Block) -> T::Block
[src]

impl<T: Debug, U: Debug, F: Debug> Debug for BitZip<T, U, F>[src]

impl<T: Bits, U: Bits<Block = T::Block>, F: Fn(T::Block, T::Block) -> T::Block> Index<u64> for BitZip<T, U, F>[src]

type Output = bool

The returned type after indexing.

Auto Trait Implementations

impl<T, U, F> Send for BitZip<T, U, F> where
    F: Send,
    T: Send,
    U: Send

impl<T, U, F> Sync for BitZip<T, U, F> where
    F: Sync,
    T: Sync,
    U: Sync

impl<T, U, F> Unpin for BitZip<T, U, F> where
    F: Unpin,
    T: Unpin,
    U: Unpin

impl<T, U, F> UnwindSafe for BitZip<T, U, F> where
    F: UnwindSafe,
    T: UnwindSafe,
    U: UnwindSafe

impl<T, U, F> RefUnwindSafe for BitZip<T, U, F> where
    F: RefUnwindSafe,
    T: RefUnwindSafe,
    U: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for 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 = 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.

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]