Lines Matching full:module_path
885 module_path: Option<MaybeStaticStr<'a>>, field
942 pub fn module_path(&self) -> Option<&'a str> { in module_path() method
943 self.module_path.map(|s| s.get()) in module_path()
949 match self.module_path { in module_path_static()
994 module_path: self.module_path, in to_builder()
1020 /// .module_path(Some("server"))
1039 /// .module_path(Some("server"))
1054 /// - `module_path`: `None`
1066 module_path: None, in new()
1103 /// Set [`module_path`](struct.Record.html#method.module_path)
1105 pub fn module_path(&mut self, path: Option<&'a str>) -> &mut RecordBuilder<'a> { in module_path() method
1106 self.record.module_path = path.map(MaybeStaticStr::Borrowed); in module_path()
1110 /// Set [`module_path`](struct.Record.html#method.module_path) to a `'static` string
1113 self.record.module_path = path.map(MaybeStaticStr::Static); in module_path_static()
1611 &(target, module_path, file, line): &(&str, &'static str, &'static str, u32), in __private_api_log() argument
1625 .module_path_static(Some(module_path)) in __private_api_log()
1638 &(target, module_path, file, line): &(&str, &'static str, &'static str, u32), in __private_api_log() argument
1646 .module_path_static(Some(module_path)) in __private_api_log()
1867 .module_path(Some("foo")) in test_record_builder()
1872 assert_eq!(record_test.module_path(), Some("foo")); in test_record_builder()
1886 .module_path(Some("foo")) in test_record_convenience_builder()
1891 assert_eq!(record_test.module_path(), Some("foo")); in test_record_convenience_builder()
1901 .module_path(Some("foo")) in test_record_complete_builder()
1909 assert_eq!(record_test.module_path(), Some("foo")); in test_record_complete_builder()