This commit is contained in:
Nathan Sobo 2023-09-12 12:43:08 -06:00
parent 5dad97779a
commit dc2733998e
5 changed files with 524 additions and 2 deletions

View file

@ -3589,7 +3589,7 @@ impl<V> BorrowWindowContext for EventContext<'_, '_, '_, V> {
}
}
pub(crate) enum Reference<'a, T> {
pub enum Reference<'a, T> {
Immutable(&'a T),
Mutable(&'a mut T),
}