[−][src]Struct ramp::ll::limb_ptr::LimbsMut
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>
Trait Implementations
impl Clone for LimbsMut[src]
impl Copy for LimbsMut[src]
impl Deref for LimbsMut[src]
impl DerefMut for LimbsMut[src]
impl Eq for LimbsMut[src]
impl Ord for LimbsMut[src]
fn cmp(&self, other: &LimbsMut) -> Ordering[src]
#[must_use]fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self[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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,