[][src]Struct bv::adapter::BitNot

pub struct BitNot<T>(_);

The result of BitsExt::bit_not.

The resulting bit vector adapter nots the bits of the underlying bit-vector-like.

Trait Implementations

impl<T: Bits> Bits for BitNot<T>[src]

type Block = T::Block

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

impl<R, T> BitSliceable<R> for BitNot<T> where
    T: BitSliceable<R>, 
[src]

type Slice = BitNot<T::Slice>

The type of the slice produced.

impl<'a, T: Bits> BitSliceable<Range<u64>> for &'a BitNot<T>[src]

type Slice = BitSliceAdapter<Self>

The type of the slice produced.

impl<'a, T: Bits> BitSliceable<RangeFrom<u64>> for &'a BitNot<T>[src]

type Slice = BitSliceAdapter<Self>

The type of the slice produced.

impl<'a, T: Bits> BitSliceable<RangeTo<u64>> for &'a BitNot<T>[src]

type Slice = BitSliceAdapter<Self>

The type of the slice produced.

impl<'a, T: Bits> BitSliceable<RangeFull> for &'a BitNot<T>[src]

type Slice = BitSliceAdapter<Self>

The type of the slice produced.

impl<'a, T: Bits> BitSliceable<RangeInclusive<u64>> for &'a BitNot<T>[src]

type Slice = BitSliceAdapter<Self>

The type of the slice produced.

impl<'a, T: Bits> BitSliceable<RangeToInclusive<u64>> for &'a BitNot<T>[src]

type Slice = BitSliceAdapter<Self>

The type of the slice produced.

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

impl<T, U> PartialEq<U> for BitNot<T> where
    T: Bits,
    U: Bits<Block = T::Block>, 
[src]

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

impl<T: Bits> Index<u64> for BitNot<T>[src]

type Output = bool

The returned type after indexing.

Auto Trait Implementations

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

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

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

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

impl<T> RefUnwindSafe for BitNot<T> where
    T: 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]