1
0
Fork 0
forked from wry/wry
wry/src/utils/option_ext.rs
2022-07-30 12:08:18 +02:00

9 lines
248 B
Rust

pub trait OptionExt<T> {
fn get_or_insert_default_ext(&mut self) -> &mut T;
}
impl<T: Default> OptionExt<T> for Option<T> {
fn get_or_insert_default_ext(&mut self) -> &mut T {
self.get_or_insert_with(|| Default::default())
}
}