Struct fixed_bump::Rc

source ·
pub struct Rc<Bump>(pub Rc<Bump>);
Expand description

A wrapper around Rc.

This type exists mainly so that Allocator can be implemented for it:

use fixed_bump::Bump;
let rc = std::rc::Rc::new(Bump::<[u32; 16]>::new());
// Error: `std::rc::Rc<Bump<...>>` doesn't implement `Allocator`:
//let b = Box::new_in(1_u32, rc);
// Compiles: `fixed_bump::Rc<Bump<...>>` implements `Allocator`:
let b = Box::new_in(1_u32, fixed_bump::Rc(rc));

Tuple Fields§

§0: Rc<Bump>

Implementations§

Creates a new Rc. This simply returns Rc(rc::Rc::new(bump)).

Examples found in repository?
src/rc.rs (line 59)
58
59
60
    fn default() -> Self {
        Self::new(Bump::default())
    }

Trait Implementations§

🔬This is a nightly-only experimental API. (allocator_api)
Attempts to allocate a block of memory. Read more
🔬This is a nightly-only experimental API. (allocator_api)
Deallocates the memory referenced by ptr. Read more
🔬This is a nightly-only experimental API. (allocator_api)
Behaves like allocate, but also ensures that the returned memory is zero-initialized. Read more
🔬This is a nightly-only experimental API. (allocator_api)
Attempts to extend the memory block. Read more
🔬This is a nightly-only experimental API. (allocator_api)
Behaves like grow, but also ensures that the new contents are set to zero before being returned. Read more
🔬This is a nightly-only experimental API. (allocator_api)
Attempts to shrink the memory block. Read more
🔬This is a nightly-only experimental API. (allocator_api)
Creates a “by reference” adapter for this instance of Allocator. Read more
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Returns the “default value” for a type. Read more
The resulting type after dereferencing.
Dereferences the value.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.