[−][src]Struct gharial::MaybeAlloc
MaybeAlloc is an implementation for GlobalAlloc , which occasionally fails to allocate.
It is a wrapper of another GlobalAlloc , and delegates the requests to the inner, however, sometimes fails to allocate
memory on purpose. i.e. MaybeAlloc::alloc can return null pointer before memory exhaustion.
The failure properbility is 1/16.
Trait Implementations
impl<A> Clone for MaybeAlloc<A> where
A: GlobalAlloc + Clone, [src]
A: GlobalAlloc + Clone,
fn clone(&self) -> Self[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<A: Debug> Debug for MaybeAlloc<A> where
A: GlobalAlloc, [src]
A: GlobalAlloc,
impl<A> Default for MaybeAlloc<A> where
A: GlobalAlloc + Default, [src]
A: GlobalAlloc + Default,
impl<A> From<A> for MaybeAlloc<A> where
A: GlobalAlloc, [src]
A: GlobalAlloc,
impl<A> GlobalAlloc for MaybeAlloc<A> where
A: GlobalAlloc, [src]
A: GlobalAlloc,
Auto Trait Implementations
impl<A> RefUnwindSafe for MaybeAlloc<A> where
A: RefUnwindSafe,
A: RefUnwindSafe,
impl<A> Send for MaybeAlloc<A> where
A: Send,
A: Send,
impl<A> Sync for MaybeAlloc<A> where
A: Sync,
A: Sync,
impl<A> Unpin for MaybeAlloc<A> where
A: Unpin,
A: Unpin,
impl<A> UnwindSafe for MaybeAlloc<A> where
A: UnwindSafe,
A: UnwindSafe,
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,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<!> for 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.
pub fn to_owned(&self) -> T[src]
pub 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.
pub 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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>, [src]
V: MultiLane<T>,