pub trait TagFor<L: Lt>: ResourceTag<Arg: TypeFn<Output<L> = Self::ArgValue>, Out: TypeFn<Output<L> = Self::Value>> {
type ArgValue;
type Value;
}
Expand description
A ResourceTag
that is defined over the given lifetimes.
This should not be implemented directly; it will be automatically implemented.
Required Associated Types§
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.