Searched defs:ArcSwapAny (Results 1 – 3 of 3) sorted by relevance
/external/rust/android-crates-io/crates/arc-swap/src/ |
D | lib.rs | 307 pub struct ArcSwapAny<T: RefCnt, S: Strategy<T> = DefaultStrategy> { struct 320 impl<T: RefCnt, S: Default + Strategy<T>> From<T> for ArcSwapAny<T, S> { argument 326 impl<T: RefCnt, S: Strategy<T>> Drop for ArcSwapAny<T, S> { implementation 338 impl<T, S: Strategy<T>> Debug for ArcSwapAny<T, S> implementation 350 impl<T, S: Strategy<T>> Display for ArcSwapAny<T, S> implementation 359 impl<T: RefCnt + Default, S: Default + Strategy<T>> Default for ArcSwapAny<T, S> { implementation 365 impl<T: RefCnt, S: Strategy<T>> ArcSwapAny<T, S> { implementation 687 impl<T, S: Strategy<Arc<T>>> ArcSwapAny<Arc<T>, S> { implementation 721 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 | 147 impl<T: RefCnt, S: Strategy<T>> Access<T> for ArcSwapAny<T, S> { implementation 166 impl<T, S: Strategy<Arc<T>>> Access<T> for ArcSwapAny<Arc<T>, S> { implementation 180 impl<T, S: Strategy<Rc<T>>> Access<T> for ArcSwapAny<Rc<T>, S> { implementation
|