Lines Matching full:exclusive
38 /// Is `Self` [`Exclusive`]?
81 /// - If `dst` permits mutation of its referent (e.g. via `Exclusive` aliasing
107 /// An [`Aliasing`] invariant which is either [`Shared`] or [`Exclusive`].
112 /// Exclusive`.
136 pub enum Exclusive {} enum
137 impl Aliasing for Exclusive { implementation
140 impl Reference for Exclusive {} implementation
251 /// unsynchronized read operations. This can be because `A` is [`Exclusive`] or
257 /// - `A` is [`Exclusive`]
265 impl<T: ?Sized> Read<Exclusive, BecauseExclusive> for T {}
284 impl Sealed for Exclusive {} implementation