Function use_memo

Source
pub fn use_memo<T>(callback: impl FnMut() -> T + 'static) -> Memo<T>
where T: 'static + PartialEq,