Type Alias addr2line::lazy::LazyResult

source ·
pub(crate) type LazyResult<T> = LazyCell<Result<T, Error>>;

Aliased Type§

struct LazyResult<T> {
    contents: UnsafeCell<Option<Result<T, Error>>>,
}

Fields§

§contents: UnsafeCell<Option<Result<T, Error>>>