Lines Matching defs:line
430 // This way these line up with the discriminants for LevelFilter below
880 line: Option<u32>,
963 /// The line containing the message.
965 pub fn line(&self) -> Option<u32> {
966 self.line
989 line: self.line,
1012 /// .line(Some(144))
1030 /// .line(Some(433))
1049 /// - `line`: `None`
1061 line: None,
1124 /// Set [`line`](struct.Record.html#method.line)
1126 pub fn line(&mut self, line: Option<u32>) -> &mut RecordBuilder<'a> {
1127 self.record.line = line;
1589 &(target, module_path, file, line): &(&str, &'static str, &'static str, u32),
1605 .line(Some(line))
1616 &(target, module_path, file, line): &(&str, &'static str, &'static str, u32),
1626 .line(Some(line))
1847 .line(Some(30))
1852 assert_eq!(record_test.line(), Some(30));
1866 .line(Some(30))
1871 assert_eq!(record_test.line(), Some(30));
1881 .line(Some(30))
1889 assert_eq!(record_test.line(), Some(30));