Skip to main content

MaybeFence

Trait MaybeFence 

Source
pub trait MaybeFence {
    // Provided method
    fn is_fence(&self) -> bool { ... }
}

Provided Methods§

Source

fn is_fence(&self) -> bool

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<Fut> MaybeFence for Fenced<Fut>
where Fut: Future,