pub struct Function<'c> {
pub name: String,
pub ty: Function<'c>,
pub blocks: BlockContext<'c>,
pub values: ValueContext<'c>,
}
Fields§
§name: String
§ty: Function<'c>
§blocks: BlockContext<'c>
§values: ValueContext<'c>
Implementations§
Trait Implementations§
impl<'c> Eq for Function<'c>
Auto Trait Implementations§
impl<'c> !Freeze for Function<'c>
impl<'c> !RefUnwindSafe for Function<'c>
impl<'c> !Send for Function<'c>
impl<'c> !Sync for Function<'c>
impl<'c> Unpin for Function<'c>
impl<'c> !UnwindSafe for Function<'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