pub struct PostModelPass<'a> {
pub id_map: &'a mut Pass,
pub types: &'a mut Pass,
pub fns: &'a mut Pass,
}Expand description
Mutable references to model passes, provided to extensions after each model cycle.
Fields§
§id_map: &'a mut PassThe Rust→C# ID mappings.
types: &'a mut PassAll resolved C# types.
fns: &'a mut PassAll resolved C# functions.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for PostModelPass<'a>
impl<'a> RefUnwindSafe for PostModelPass<'a>
impl<'a> Send for PostModelPass<'a>
impl<'a> Sync for PostModelPass<'a>
impl<'a> Unpin for PostModelPass<'a>
impl<'a> UnsafeUnpin for PostModelPass<'a>
impl<'a> !UnwindSafe for PostModelPass<'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