Home
last modified time | relevance | path

Searched refs:QueueableProvider (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/v4l2r/lib/src/device/
Dqueue.rs534 pub trait QueueableProvider<'a> { trait
541 pub trait GetBufferByIndex<'a>: QueueableProvider<'a> {
546 pub trait GetFreeBuffer<'a>: QueueableProvider<'a> {
550 impl<'a, D: Direction, P: PrimitiveBufferHandles> QueueableProvider<'a> impl
565 impl<'a, D, P, Q> QueueableProvider<'a> for Q
677 Q: private::QueueableProvider<'a>,
680 type Queueable = <Self as private::QueueableProvider<'a>>::Queueable;
692 Q: private::QueueableProvider<'a>,
695 type Queueable = <Self as private::QueueableProvider<'a>>::Queueable;
709 <Self as private::QueueableProvider<'a>>::Queueable: OutputQueueable<B>,
[all …]
/external/rust/crates/v4l2r/lib/src/device/queue/
Dgeneric.rs126 impl<'a, D: Direction> private::QueueableProvider<'a>