Expand description
Different objects protected by the same lock
Modules§
Structs§
- Locked
- Data protect by a shared lock.
- Shared
RwLock - A shared read/write lock that can protect multiple objects.
- Shared
RwLock Read Guard - Proof that a shared lock was obtained for reading (servo).
- Shared
RwLock Write Guard - Proof that a shared lock was obtained for writing (servo).
- Stylesheet
Guards - Guards for a document
Traits§
- Deep
Clone With Lock - A trait to do a deep clone of a given CSS type. Gets a lock and a read guard, in order to be able to read and clone nested structures.
- ToCss
With Guard - Like ToCss, but with a lock guard given by the caller, and with the writer specified concretely rather than with a parameter.