#![doc=include_str!("../README.md")]#![no_std]/// Receiver type for disuse return value.
#[derive(Debug, Default)]pubstructDisuse;/// Dispose of the return value.
/// Type `T` should implement [Clone].
impl<T:Clone>From<T>forDisuse{fnfrom(_: T)->Self{Self}}