pub trait ContextMutProxy<T: Id = IriBuf> {
    type Target: ContextMut<T>;
    fn deref(&self) -> &Self::Target;
}
Expand description

Trait for types that are or wrap a mutable context.

This trait is used by the Document::compact function to accept either a context or a wrapper to a context.

Associated Types

Required methods

Returns a reference to the mutable context.

Implementors