pub struct ProcessedOwned<T, B, C, M> { /* private fields */ }
Expand description
Processed context that also owns the original, unprocessed, context.
Implementations
sourceimpl<T, B, C, M> ProcessedOwned<T, B, C, M>
impl<T, B, C, M> ProcessedOwned<T, B, C, M>
pub fn unprocessed(&self) -> &Meta<C, M>
pub fn processed(&self) -> &Context<T, B, C, M>
pub fn as_ref(&self) -> ProcessedRef<'_, '_, T, B, C, M>
Auto Trait Implementations
impl<T, B, C, M> RefUnwindSafe for ProcessedOwned<T, B, C, M>where
B: UnwindSafe + RefUnwindSafe,
C: RefUnwindSafe,
M: RefUnwindSafe,
T: UnwindSafe + RefUnwindSafe,
impl<T, B, C, M> Send for ProcessedOwned<T, B, C, M>where
B: Send,
C: Send,
M: Send,
T: Send,
impl<T, B, C, M> Sync for ProcessedOwned<T, B, C, M>where
B: Send + Sync,
C: Sync,
M: Sync,
T: Send + Sync,
impl<T, B, C, M> Unpin for ProcessedOwned<T, B, C, M>where
B: Unpin,
C: Unpin,
M: Unpin,
T: Unpin,
impl<T, B, C, M> UnwindSafe for ProcessedOwned<T, B, C, M>where
B: UnwindSafe,
C: UnwindSafe,
M: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more