pub trait CanSend<'a, To: Location<'a>>: Location<'a> {
type In<T>;
type Out<T>;
type OutStrongestOrder<InOrder>;
// Required methods
fn is_demux() -> bool;
fn tagged_type() -> Option<Type>;
}
Required Associated Types§
type In<T>
type Out<T>
Sourcetype OutStrongestOrder<InOrder>
type OutStrongestOrder<InOrder>
Given the ordering guarantees of the input, determines the strongest possible ordering guarantees of the output.
Required Methods§
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.