Enum tor_circmgr::ExternalActivity
source · #[non_exhaustive]
pub enum ExternalActivity {
DirCache,
}Expand description
An activity that can succeed or fail, and whose success or failure can be attributed to a guard.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
DirCache
The activity of using the guard as a directory cache.
Trait Implementations§
source§impl Clone for ExternalActivity
impl Clone for ExternalActivity
source§fn clone(&self) -> ExternalActivity
fn clone(&self) -> ExternalActivity
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ExternalActivity
impl Debug for ExternalActivity
source§impl PartialEq<ExternalActivity> for ExternalActivity
impl PartialEq<ExternalActivity> for ExternalActivity
source§fn eq(&self, other: &ExternalActivity) -> bool
fn eq(&self, other: &ExternalActivity) -> bool
impl Copy for ExternalActivity
impl Eq for ExternalActivity
impl StructuralEq for ExternalActivity
impl StructuralPartialEq for ExternalActivity
Auto Trait Implementations§
impl RefUnwindSafe for ExternalActivity
impl Send for ExternalActivity
impl Sync for ExternalActivity
impl Unpin for ExternalActivity
impl UnwindSafe for ExternalActivity
Blanket Implementations§
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read moresource§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read moresource§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s. Read moresource§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s. Read more