Searched refs:Section (Results 1 – 4 of 4) sorted by relevance
| /webrtc/mdns/src/message/ |
| H A D | builder.rs | 24 pub section: Section, 55 section: Section::Header, in new() 97 self.start_check(Section::Questions)?; in start_questions() 98 self.section = Section::Questions; in start_questions() 104 self.start_check(Section::Answers)?; in start_answers() 105 self.section = Section::Answers; in start_answers() 112 self.section = Section::Authorities; in start_authorities() 119 self.section = Section::Additionals; in start_additionals() 162 if self.section < Section::Answers { in check_resource_section() 197 if self.section < Section::Header { in finish() [all …]
|
| H A D | header.rs | 58 pub enum Section { enum 69 impl From<u8> for Section { implementation 72 0 => Section::NotStarted, in from() 73 1 => Section::Header, in from() 74 2 => Section::Questions, in from() 75 3 => Section::Answers, in from() 76 4 => Section::Authorities, in from() 77 5 => Section::Additionals, in from() 78 _ => Section::Done, in from() 83 impl fmt::Display for Section { implementation [all …]
|
| H A D | parser.rs | 2 use crate::message::header::{Header, HeaderInternal, Section}; 25 pub section: Section, 40 self.section = Section::Questions; in start() 107 self.check_advance(Section::Questions)?; in question() 144 self.check_advance(Section::Questions)?; in skip_question() 168 self.resource_header(Section::Answers) in answer_header() 173 self.resource(Section::Answers) in answer() 204 self.skip_resource(Section::Answers) in skip_answer() 227 self.resource(Section::Authorities) in authority() 258 self.skip_resource(Section::Authorities) in skip_authority() [all …]
|
| H A D | message_test.rs | 261 section: Section::Questions, in test_question_pack_unpack() 837 section: Section::NotStarted, in test_start_error() 847 section: Section::Done, in test_start_error() 972 section: Section::NotStarted, in test_builder_resource_error() 982 section: Section::Header, in test_builder_resource_error() 992 section: Section::Questions, in test_builder_resource_error() 1002 section: Section::Done, in test_builder_resource_error()
|