IntoProtobufAny

Trait IntoProtobufAny 

Source
pub trait IntoProtobufAny {
    // Required method
    fn into_any(self) -> Any;
}
Expand description

Value convertion into protobuf’s Any

Required Methods§

Source

fn into_any(self) -> Any

Converts itself into protobuf’s Any type

Implementors§

Source§

impl<T> IntoProtobufAny for T
where T: Name,