pub struct Function<'a> {
pub inline: bool,
pub bank: u32,
pub interrupt: bool,
pub code: Option<StatementLoc<'a>>,
pub local_variables: Vec<String>,
/* private fields */
}
Fields§
§inline: bool
§bank: u32
§interrupt: bool
§code: Option<StatementLoc<'a>>
§local_variables: Vec<String>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Function<'a>
impl<'a> RefUnwindSafe for Function<'a>
impl<'a> Send for Function<'a>
impl<'a> Sync for Function<'a>
impl<'a> Unpin for Function<'a>
impl<'a> UnwindSafe for Function<'a>
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