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

pub struct LimbsMut { /* fields omitted */ }

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

Implementations

impl LimbsMut[src]

pub unsafe fn new(base: *mut Limb, start: i32, end: i32) -> LimbsMut[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) -> LimbsMut[src]

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

impl LimbsMut[src]

pub fn as_const(self) -> Limbs[src]

View the LimbsMut as a Limbs (an explicit *const Limb -> *mut Limb conversion)

Methods from Deref<Target = Limb>

pub const BITS: usize[src]

pub const B: Limb[src]

Trait Implementations

impl Clone for LimbsMut[src]

impl Copy for LimbsMut[src]

impl Deref for LimbsMut[src]

type Target = Limb

The resulting type after dereferencing.

impl DerefMut for LimbsMut[src]

impl Eq for LimbsMut[src]

impl Ord for LimbsMut[src]

impl PartialEq<LimbsMut> for LimbsMut[src]

impl PartialOrd<LimbsMut> for LimbsMut[src]

Auto Trait Implementations

impl RefUnwindSafe for LimbsMut

impl !Send for LimbsMut

impl !Sync for LimbsMut

impl Unpin for LimbsMut

impl UnwindSafe for LimbsMut

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.