pub struct Block<'c> {
pub number: u32,
pub terminator: Cell<Terminator<'c>>,
pub block_values: RefCell<Vec<&'c Value<'c>>>,
pub func: &'c Function<'c>,
}
Fields§
§number: u32
§terminator: Cell<Terminator<'c>>
§block_values: RefCell<Vec<&'c Value<'c>>>
§func: &'c Function<'c>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'c> !Freeze for Block<'c>
impl<'c> !RefUnwindSafe for Block<'c>
impl<'c> !Send for Block<'c>
impl<'c> !Sync for Block<'c>
impl<'c> Unpin for Block<'c>
impl<'c> !UnwindSafe for Block<'c>
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