pub trait Push<T> {
// Required method
fn push(&mut self, key: &str, value: T);
}Expand description
Artificial trait implemented for FieldTable to allow inserting
AMQPValues infallibly instantiated from most applicable types.
Required Methods§
Sourcefn push(&mut self, key: &str, value: T)
fn push(&mut self, key: &str, value: T)
Inserts into this FieldTable under the given key an AMQPValue
instantiated from the given value.