Skip to main content

KineticWell

Trait KineticWell 

Source
pub trait KineticWell: Well {
    type Potential: PotentialWell<Well<Target<Self>> = Self>;
}
Expand description

Inverse trait for PotentialWell.

Required Associated Types§

Source

type Potential: PotentialWell<Well<Target<Self>> = Self>

Potential version.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<T> KineticWell for Box<T>

Available on crate features alloc only.
Source§

impl<T> KineticWell for Rc<T>

Available on crate feature alloc only.
Source§

impl<T> KineticWell for Weak<T>

Available on crate feature alloc only.
Source§

impl<T> KineticWell for Arc<T>

Available on crate features alloc only.
Source§

impl<T> KineticWell for Weak<T>

Available on crate features alloc only.
Source§

impl<W: StrongWell + KineticWell<Potential: StrongPotentialWell<StrongWell<Target<W>> = W>>> KineticWell for Pin<W>

Implementors§