Searched defs:ArcSwapAny (Results 1 – 3 of 3) sorted by relevance
/aosp_15_r20/external/rust/android-crates-io/crates/arc-swap/src/ |
D | lib.rs | 302 pub struct ArcSwapAny<T: RefCnt, S: Strategy<T> = DefaultStrategy> { struct 315 impl<T: RefCnt, S: Default + Strategy<T>> From<T> for ArcSwapAny<T, S> { argument 321 impl<T: RefCnt, S: Strategy<T>> Drop for ArcSwapAny<T, S> { implementation 333 impl<T, S: Strategy<T>> Debug for ArcSwapAny<T, S> implementation 345 impl<T, S: Strategy<T>> Display for ArcSwapAny<T, S> implementation 354 impl<T: RefCnt + Default, S: Default + Strategy<T>> Default for ArcSwapAny<T, S> { implementation 360 impl<T: RefCnt, S: Strategy<T>> ArcSwapAny<T, S> { implementation 682 impl<T, S: Strategy<Arc<T>>> ArcSwapAny<Arc<T>, S> { implementation 716 impl<T, S: Strategy<Option<Arc<T>>>> ArcSwapAny<Option<Arc<T>>, S> { implementation
|
D | serde.rs | 4 impl<T, S> Serialize for ArcSwapAny<T, S> implementation 14 impl<'de, T, S> Deserialize<'de> for ArcSwapAny<T, S> implementation
|
D | access.rs | 146 impl<T: RefCnt, S: Strategy<T>> Access<T> for ArcSwapAny<T, S> { implementation 165 impl<T, S: Strategy<Arc<T>>> Access<T> for ArcSwapAny<Arc<T>, S> { implementation 179 impl<T, S: Strategy<Rc<T>>> Access<T> for ArcSwapAny<Rc<T>, S> { implementation
|