pub struct Cell {
pub size: u32,
pub align: u32,
}Expand description
One run of bytes in the frame, holding one local, one spill slot, or several of each.
Fields§
§size: u32How many bytes of it there are, which is as many as the largest thing in it needs.
align: u32What its address has to be a multiple of, which is the strictest thing in it.
Trait Implementations§
impl Copy for Cell
impl Eq for Cell
impl StructuralPartialEq for Cell
Auto Trait Implementations§
impl Freeze for Cell
impl RefUnwindSafe for Cell
impl Send for Cell
impl Sync for Cell
impl Unpin for Cell
impl UnsafeUnpin for Cell
impl UnwindSafe for Cell
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