[][src]Struct batsat::alloc::Ref

pub struct Ref<T: Copy>(_, _);

A reference to a T value living in the allocator.

The reference is invariant in T.

Implementations

impl<T: Copy> Ref<T>[src]

pub const UNDEF: Self[src]

pub const SPECIAL: Self[src]

Trait Implementations

impl<T: Copy> Add<u32> for Ref<T>[src]

type Output = Ref<T>

The resulting type after applying the + operator.

impl<T: Clone + Copy> Clone for Ref<T>[src]

impl<T: Copy> Copy for Ref<T>[src]

impl<T: Copy> Debug for Ref<T>[src]

impl<T: Copy> Default for Ref<T>[src]

impl<T: Copy> Eq for Ref<T>[src]

impl<T: Copy> Index<Ref<T>> for RegionAllocator<T>[src]

type Output = T

The returned type after indexing.

impl<T: Copy> IndexMut<Ref<T>> for RegionAllocator<T>[src]

impl<T: Copy> Ord for Ref<T>[src]

impl<T: Copy> PartialEq<Ref<T>> for Ref<T>[src]

impl<T: Copy> PartialOrd<Ref<T>> for Ref<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Ref<T>[src]

impl<T> Send for Ref<T>[src]

impl<T> Sync for Ref<T>[src]

impl<T> Unpin for Ref<T>[src]

impl<T> UnwindSafe for Ref<T>[src]

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<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.