[][src]Struct ramp::ll::limb_ptr::Limbs

pub struct Limbs { /* fields omitted */ }

A version of *const Limb that is bounds-checked when debug assertions are on

Implementations

impl Limbs[src]

pub unsafe fn new(base: *const Limb, start: i32, end: i32) -> Limbs[src]

Create a new instance, pointing at base and valid from base.offset(start) to base.offset(end).

pub unsafe fn offset(self, x: isize) -> Limbs[src]

Move self to point to the xth Limbs from the current location.

Methods from Deref<Target = Limb>

pub const BITS: usize[src]

pub const B: Limb[src]

Trait Implementations

impl Clone for Limbs[src]

impl Copy for Limbs[src]

impl Debug for Limbs[src]

impl Deref for Limbs[src]

type Target = Limb

The resulting type after dereferencing.

impl Eq for Limbs[src]

impl Ord for Limbs[src]

impl PartialEq<Limbs> for Limbs[src]

impl PartialOrd<Limbs> for Limbs[src]

Auto Trait Implementations

impl RefUnwindSafe for Limbs

impl !Send for Limbs

impl !Sync for Limbs

impl Unpin for Limbs

impl UnwindSafe for Limbs

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.