1use crate::as_clone::AsClone; 2 3impl AsClone<bool> for bool { 4 fn as_clone(&self) -> bool { 5 *self 6 } 7}