pub trait GroBufferDestination: Eq {
// Required method
fn frame_type(&self) -> GroFrameType;
}Expand description
The destination for a buffer involved in GRO (e.g., a device ID). Buffers with different destinations are not coalesced.
Required Methods§
Sourcefn frame_type(&self) -> GroFrameType
fn frame_type(&self) -> GroFrameType
Returns the frame type for this destination.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".