Skip to content

Commit be4ea06

Browse files
committed
Modifiers -> Qualifiers
1 parent ffa5280 commit be4ea06

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/librustdoc/json/conversions.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -228,19 +228,19 @@ crate fn from_ctor_kind(struct_type: CtorKind) -> StructType {
228228
}
229229
}
230230

231-
crate fn from_fn_header(header: &rustc_hir::FnHeader) -> HashSet<Modifiers> {
231+
crate fn from_fn_header(header: &rustc_hir::FnHeader) -> HashSet<Qualifiers> {
232232
let mut v = HashSet::new();
233233

234234
if let rustc_hir::Unsafety::Unsafe = header.unsafety {
235-
v.insert(Modifiers::Unsafe);
235+
v.insert(Qualifiers::Unsafe);
236236
}
237237

238238
if let rustc_hir::IsAsync::Async = header.asyncness {
239-
v.insert(Modifiers::Async);
239+
v.insert(Qualifiers::Async);
240240
}
241241

242242
if let rustc_hir::Constness::Const = header.constness {
243-
v.insert(Modifiers::Const);
243+
v.insert(Qualifiers::Const);
244244
}
245245

246246
v
@@ -376,7 +376,7 @@ impl From<clean::BareFunctionDecl> for FunctionPointer {
376376
FunctionPointer {
377377
header: if let rustc_hir::Unsafety::Unsafe = unsafety {
378378
let mut hs = HashSet::new();
379-
hs.insert(Modifiers::Unsafe);
379+
hs.insert(Qualifiers::Unsafe);
380380
hs
381381
} else {
382382
HashSet::new()

src/rustdoc-json-types/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ pub enum StructType {
284284
#[non_exhaustive]
285285
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq, Hash)]
286286
#[serde(rename_all = "snake_case")]
287-
pub enum Modifiers {
287+
pub enum Qualifiers {
288288
Const,
289289
Unsafe,
290290
Async,
@@ -294,15 +294,15 @@ pub enum Modifiers {
294294
pub struct Function {
295295
pub decl: FnDecl,
296296
pub generics: Generics,
297-
pub header: HashSet<Modifiers>,
297+
pub header: HashSet<Qualifiers>,
298298
pub abi: String,
299299
}
300300

301301
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)]
302302
pub struct Method {
303303
pub decl: FnDecl,
304304
pub generics: Generics,
305-
pub header: HashSet<Modifiers>,
305+
pub header: HashSet<Qualifiers>,
306306
pub abi: String,
307307
pub has_body: bool,
308308
}
@@ -415,7 +415,7 @@ pub enum Type {
415415
pub struct FunctionPointer {
416416
pub decl: FnDecl,
417417
pub generic_params: Vec<GenericParamDef>,
418-
pub header: HashSet<Modifiers>,
418+
pub header: HashSet<Qualifiers>,
419419
pub abi: String,
420420
}
421421

0 commit comments

Comments
 (0)