pub struct ProcessedRef<'l, 'a, T, B> {
pub unprocessed: &'l Context,
pub processed: &'a Context<T, B>,
}
Expand description
Reference to a processed context that also borrows the original, unprocessed, context.
Fields§
§unprocessed: &'l Context
§processed: &'a Context<T, B>
Implementations§
Auto Trait Implementations§
impl<'l, 'a, T, B> Freeze for ProcessedRef<'l, 'a, T, B>
impl<'l, 'a, T, B> RefUnwindSafe for ProcessedRef<'l, 'a, T, B>
impl<'l, 'a, T, B> Send for ProcessedRef<'l, 'a, T, B>
impl<'l, 'a, T, B> Sync for ProcessedRef<'l, 'a, T, B>
impl<'l, 'a, T, B> Unpin for ProcessedRef<'l, 'a, T, B>
impl<'l, 'a, T, B> UnwindSafe for ProcessedRef<'l, 'a, T, B>
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