Skip to main content

Context

Trait Context 

Source
pub trait Context: Debug { }
Expand description

Metadata associated with an I/O stream. The context will be available to all super::Writable implementations. For each value that it may provide, it should implement ContextProvides for that type.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<'c, C> Context for &'c C
where C: Context,

Implementors§