matrix_sdk_ffi/
helpers.rs

1
2
3
4
5
use std::sync::Arc;

pub(crate) fn unwrap_or_clone_arc<T: Clone>(arc: Arc<T>) -> T {
    Arc::try_unwrap(arc).unwrap_or_else(|x| (*x).clone())
}