Home
last modified time | relevance | path

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

/webrtc/rtcp/src/compound_packet/
H A Dcompound_packet_test.rs109 CompoundPacket(vec![ in test_valid_packet()
117 CompoundPacket(vec![ in test_valid_packet()
125 CompoundPacket(vec![ in test_valid_packet()
134 CompoundPacket(vec![ in test_valid_packet()
142 CompoundPacket(vec![ in test_valid_packet()
151 CompoundPacket(vec![ in test_valid_packet()
190 CompoundPacket(vec![ in test_cname()
199 CompoundPacket(vec![ in test_cname()
208 CompoundPacket(vec![ in test_cname()
218 CompoundPacket(vec![ in test_cname()
[all …]
H A Dmod.rs29 pub struct CompoundPacket(pub Vec<Box<dyn Packet + Send + Sync>>); struct
31 impl fmt::Display for CompoundPacket { implementation
37 impl Packet for CompoundPacket { implementation
67 .downcast_ref::<CompoundPacket>() in equal()
76 impl MarshalSize for CompoundPacket { implementation
84 impl Marshal for CompoundPacket { implementation
98 impl Unmarshal for CompoundPacket { implementation
111 let c = CompoundPacket(packets); in unmarshal()
118 impl CompoundPacket { impl