Lines Matching full:revoked
5 //! The [`Revocable`] type wraps other types and allows access to them to be revoked. The existence
20 /// Once access is revoked and all concurrent users complete (i.e., all existing instances of
94 /// Returns `None` if the object has been revoked and is therefore no longer accessible.
112 /// Returns `None` if the object has been revoked and is therefore no longer accessible.
135 /// Returns [`None`] if the object has been revoked and is therefore no longer accessible, or
148 /// The caller must ensure this [`Revocable`] instance hasn't been revoked and won't be revoked
178 /// Access to the object is revoked immediately to new callers of [`Revocable::try_access`],
181 /// Returns `true` if `&self` has been revoked with this call, `false` if it was revoked
196 /// Access to the object is revoked immediately to new callers of [`Revocable::try_access`].
202 /// Returns `true` if `&self` has been revoked with this call, `false` if it was revoked
214 // Drop only if the data hasn't been revoked yet (in which case it has already been in drop()