[][src]Module libsugar::once_get

Get Once

let mut a = None;
let b = a.get_or_init(|| 1);
assert_eq!(*b, 1);

Traits

OnceGet

Get Once