pub trait TrackingInto<T, S>{
// Required method
fn tracking_into(self, status: &mut S, parent: &str) -> T;
}Expand description
A value-to-value conversion that consumes the input value while tracking changes via a
Kubernetes status. The opposite of TrackingFrom.
One should avoid implementing TrackingInto as it is automatically implemented via a
blanket implementation.
Required Methods§
Sourcefn tracking_into(self, status: &mut S, parent: &str) -> T
fn tracking_into(self, status: &mut S, parent: &str) -> T
Convert Self into T.
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.