pub trait Coerce<'a, T> { // Required method fn coerce(&'a self) -> Option<T>; }
Artificial trait implemented for a few types like AMQPValue or ShortString to allow conveniently coercing them into standard Rust types.
AMQPValue
ShortString
Flexibly generates a value of type T that is inferred from this object.
T