pubusefeed_type::*;modfeed_type{/// Multi Protocol Encapsulation (MPE) encoding
pubconstDVB_NET_FEEDTYPE_MPE:u8=0;/// Ultra Lightweight Encapsulation (ULE) encoding
pubconstDVB_NET_FEEDTYPE_ULE:u8=1;}/// Describes a DVB network interface
/// Configures adapter to decapsulate IP packets from MPEG-TS stream
#[repr(C)]#[derive(Debug)]pubstructDvbNetIf{/// Packet ID (PID) of the MPEG-TS that contains data
pubpid:u16,
/// Number of the Digital TV interface
pubif_num:u16,
/// Encapsulation type of the feed
pubfeedtype:u8,
}