pub struct ProcessedOwned<T, B> {
    pub unprocessed: Context,
    pub processed: Context<T, B>,
}Expand description
Processed context that also owns the original, unprocessed, context.
Fields§
§unprocessed: Context§processed: Context<T, B>Implementations§
Auto Trait Implementations§
impl<T, B> !Freeze for ProcessedOwned<T, B>
impl<T, B> RefUnwindSafe for ProcessedOwned<T, B>
impl<T, B> Send for ProcessedOwned<T, B>
impl<T, B> Sync for ProcessedOwned<T, B>
impl<T, B> Unpin for ProcessedOwned<T, B>
impl<T, B> UnwindSafe for ProcessedOwned<T, B>where
    T: UnwindSafe,
    B: UnwindSafe,
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