#![doc=include_str!("../README.md")]#![no_std]#![deny(missing_docs)]/// A trait for downgrading mutable references to immutable ones.
pubtraitDowngrade{/// Downgrade a mutable reference to an immutable one.
fndowngrade(self: &mutSelf)->&Self{self}}// Blank implementation for all types
impl<T> Downgrade forT{}