pub trait KineticWell: Well {
type Potential: PotentialWell<Well<Target<Self>> = Self>;
}Expand description
Inverse trait for PotentialWell.
Required Associated Types§
Sourcetype Potential: PotentialWell<Well<Target<Self>> = Self>
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.
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.
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.
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.
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.
impl<T> KineticWell for Weak<T>
Available on crate features
alloc only.