pub struct Local {
pub size: u32,
pub align: u32,
}Expand description
A piece of memory the function needs for its own use, which is what an alloca becomes.
Fields§
§size: u32How many bytes of it there are.
align: u32What its address has to be a multiple of.
Trait Implementations§
impl Copy for Local
impl Eq for Local
impl StructuralPartialEq for Local
Auto Trait Implementations§
impl Freeze for Local
impl RefUnwindSafe for Local
impl Send for Local
impl Sync for Local
impl Unpin for Local
impl UnsafeUnpin for Local
impl UnwindSafe for Local
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