#[non_exhaustive]pub struct Context<T>where
T: Debug + LocalAwareSend,{
pub config: Arc<T>,
pub inherent: InherentContext,
}
Expand description
A context that is passed to a component’s operations.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.config: Arc<T>
Operation-specific configuration.
inherent: InherentContext
Inherent data passed to the operation.
Implementations§
Source§impl<T> Context<T>where
T: Debug + LocalAwareSend,
impl<T> Context<T>where
T: Debug + LocalAwareSend,
Sourcepub fn new(config: T, inherent: &InherentData) -> Context<T>
pub fn new(config: T, inherent: &InherentData) -> Context<T>
Create a new context.
Trait Implementations§
Source§impl<T> From<ContextTransport<T>> for Context<T>
impl<T> From<ContextTransport<T>> for Context<T>
Source§fn from(value: ContextTransport<T>) -> Context<T>
fn from(value: ContextTransport<T>) -> Context<T>
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> Freeze for Context<T>
impl<T> !RefUnwindSafe for Context<T>
impl<T> Send for Context<T>where
T: Sync,
impl<T> Sync for Context<T>where
T: Sync,
impl<T> Unpin for Context<T>
impl<T> !UnwindSafe for Context<T>
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