Struct toad_common::stem::Stem
source · pub struct Stem<T>(_);Expand description
A thread-safe mutable memory location that allows for many concurrent readers or a single writer.
When feature std enabled, this uses std::sync::RwLock.
When std disabled, uses core::cell::Cell.