1 2 3 4 5 6 7
use crate::Masked; impl<T> From<T> for Masked<T> { fn from(value: T) -> Self { Self(value) } }