pub trait IntoConcreteOwned<T> {
// Required method
fn into_concrete_owned(self) -> Option<T>;
}
Expand description
Trait to extract an owned concrete type from an enum Packet by consuming it, if applicable.
pub trait IntoConcreteOwned<T> {
// Required method
fn into_concrete_owned(self) -> Option<T>;
}
Trait to extract an owned concrete type from an enum Packet by consuming it, if applicable.