Lines Matching refs:section
24 pub section: Section, field
55 section: Section::Header, in new()
84 fn start_check(&self, section: Section) -> Result<()> { in start_check()
85 if self.section <= Section::NotStarted { in start_check()
88 if self.section > section { in start_check()
98 self.section = Section::Questions; in start_questions()
105 self.section = Section::Answers; in start_answers()
112 self.section = Section::Authorities; in start_authorities()
119 self.section = Section::Additionals; in start_additionals()
124 let section = self.section; in increment_section_count() localVariable
125 let (count, err) = match section { in increment_section_count()
145 if self.section < Section::Questions { in add_question()
148 if self.section > Section::Questions { in add_question()
162 if self.section < Section::Answers { in check_resource_section()
165 if self.section > Section::Additionals { in check_resource_section()
197 if self.section < Section::Header { in finish()
200 self.section = Section::Done; in finish()