pub struct Chunk;
Expand description
An atom containing memory of undefined type.
Trait Implementations§
Source§impl<'a, 'b> Atom<'a, 'b> for Chunkwhere
'a: 'b,
impl<'a, 'b> Atom<'a, 'b> for Chunkwhere
'a: 'b,
Source§type ReadParameter = ()
type ReadParameter = ()
The atom-specific parameter of the
read
function. Read moreSource§type ReadHandle = &'a [u8]
type ReadHandle = &'a [u8]
The return value of the
read
function. Read moreSource§type WriteParameter = ()
type WriteParameter = ()
The atom-specific parameter of the
write
function. Read moreSource§type WriteHandle = FramedMutSpace<'a, 'b>
type WriteHandle = FramedMutSpace<'a, 'b>
The return value of the
write
function. Read moreSource§fn init(frame: FramedMutSpace<'a, 'b>, _: ()) -> Option<FramedMutSpace<'a, 'b>>
fn init(frame: FramedMutSpace<'a, 'b>, _: ()) -> Option<FramedMutSpace<'a, 'b>>
Initialize the body of the atom. Read more
Auto Trait Implementations§
impl Freeze for Chunk
impl RefUnwindSafe for Chunk
impl Send for Chunk
impl Sync for Chunk
impl Unpin for Chunk
impl UnwindSafe for Chunk
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more