moq-transfork 0.2.0

Media over QUIC
Documentation
1
2
3
4
5
6
7
/// A type that is split into 1 producer and N consumers.
pub trait Produce: Clone {
	type Consumer: Clone;
	type Producer;

	fn produce(self) -> (Self::Producer, Self::Consumer);
}