pub trait RenderFeatureViewSubmitPacketIntoConcrete {
    // Required method
    fn into_concrete<T: RenderFeatureViewSubmitPacket>(self) -> Box<T>;
}
Expand description

Provides into_concrete method to downcast into a concrete type.

Required Methods§

source

fn into_concrete<T: RenderFeatureViewSubmitPacket>(self) -> Box<T>

Downcast Box<dyn RenderFeatureViewSubmitPacket> into Box<T> where T: RenderFeatureViewSubmitPacket.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl RenderFeatureViewSubmitPacketIntoConcrete for Box<dyn RenderFeatureViewSubmitPacket>

Implementors§