pub(crate) trait RcAllocator {
// Required method
fn allocate(
&mut self,
source: RcWordSource,
value: Unsigned36Bit,
) -> Result<Address, RcWordAllocationFailure>;
}Required Methods§
fn allocate( &mut self, source: RcWordSource, value: Unsigned36Bit, ) -> Result<Address, RcWordAllocationFailure>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".