Make happy latest stable and nightly Rust/Clippy
This commit is contained in:
parent
a32140cd46
commit
eb974fe3ac
7 changed files with 336 additions and 335 deletions
|
@ -338,7 +338,7 @@ impl<'a> Lexer<'a> {
|
||||||
|
|
||||||
let mut end_idx = loop {
|
let mut end_idx = loop {
|
||||||
if let Some((idx, ch)) = self.peek_char() {
|
if let Some((idx, ch)) = self.peek_char() {
|
||||||
if ch.is_digit(10) || (ch == '-' && last_idx == start_idx) {
|
if ch.is_ascii_digit() || (ch == '-' && last_idx == start_idx) {
|
||||||
if ch == '0' && last_char == '0' && last_idx == start_idx {
|
if ch == '0' && last_char == '0' && last_idx == start_idx {
|
||||||
return Err(Spanning::zero_width(
|
return Err(Spanning::zero_width(
|
||||||
&self.position,
|
&self.position,
|
||||||
|
@ -367,7 +367,7 @@ impl<'a> Lexer<'a> {
|
||||||
self.next_char();
|
self.next_char();
|
||||||
end_idx = loop {
|
end_idx = loop {
|
||||||
if let Some((idx, ch)) = self.peek_char() {
|
if let Some((idx, ch)) = self.peek_char() {
|
||||||
if ch.is_digit(10) {
|
if ch.is_ascii_digit() {
|
||||||
self.next_char();
|
self.next_char();
|
||||||
} else if last_idx == start_idx {
|
} else if last_idx == start_idx {
|
||||||
return Err(Spanning::zero_width(
|
return Err(Spanning::zero_width(
|
||||||
|
@ -396,7 +396,9 @@ impl<'a> Lexer<'a> {
|
||||||
|
|
||||||
end_idx = loop {
|
end_idx = loop {
|
||||||
if let Some((idx, ch)) = self.peek_char() {
|
if let Some((idx, ch)) = self.peek_char() {
|
||||||
if ch.is_digit(10) || (last_idx == start_idx && (ch == '-' || ch == '+')) {
|
if ch.is_ascii_digit()
|
||||||
|
|| (last_idx == start_idx && (ch == '-' || ch == '+'))
|
||||||
|
{
|
||||||
self.next_char();
|
self.next_char();
|
||||||
} else if last_idx == start_idx {
|
} else if last_idx == start_idx {
|
||||||
// 1e is not a valid floating point number
|
// 1e is not a valid floating point number
|
||||||
|
|
|
@ -33,7 +33,7 @@ pub trait GraphQLObject<S: ScalarValue>: GraphQLType<S> {
|
||||||
fn mark() {}
|
fn mark() {}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, S, T> GraphQLObject<S> for &T
|
impl<S, T> GraphQLObject<S> for &T
|
||||||
where
|
where
|
||||||
T: GraphQLObject<S> + ?Sized,
|
T: GraphQLObject<S> + ?Sized,
|
||||||
S: ScalarValue,
|
S: ScalarValue,
|
||||||
|
@ -90,7 +90,7 @@ pub trait GraphQLInterface<S: ScalarValue>: GraphQLType<S> {
|
||||||
fn mark() {}
|
fn mark() {}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, S, T> GraphQLInterface<S> for &T
|
impl<S, T> GraphQLInterface<S> for &T
|
||||||
where
|
where
|
||||||
T: GraphQLInterface<S> + ?Sized,
|
T: GraphQLInterface<S> + ?Sized,
|
||||||
S: ScalarValue,
|
S: ScalarValue,
|
||||||
|
@ -147,7 +147,7 @@ pub trait GraphQLUnion<S: ScalarValue>: GraphQLType<S> {
|
||||||
fn mark() {}
|
fn mark() {}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, S, T> GraphQLUnion<S> for &T
|
impl<S, T> GraphQLUnion<S> for &T
|
||||||
where
|
where
|
||||||
T: GraphQLUnion<S> + ?Sized,
|
T: GraphQLUnion<S> + ?Sized,
|
||||||
S: ScalarValue,
|
S: ScalarValue,
|
||||||
|
@ -194,7 +194,7 @@ pub trait IsOutputType<S: ScalarValue>: GraphQLType<S> {
|
||||||
fn mark() {}
|
fn mark() {}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, S, T> IsOutputType<S> for &T
|
impl<S, T> IsOutputType<S> for &T
|
||||||
where
|
where
|
||||||
T: IsOutputType<S> + ?Sized,
|
T: IsOutputType<S> + ?Sized,
|
||||||
S: ScalarValue,
|
S: ScalarValue,
|
||||||
|
@ -271,7 +271,7 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, S> IsOutputType<S> for str where S: ScalarValue {}
|
impl<S> IsOutputType<S> for str where S: ScalarValue {}
|
||||||
|
|
||||||
/// Marker trait for types which can be used as input types.
|
/// Marker trait for types which can be used as input types.
|
||||||
///
|
///
|
||||||
|
@ -287,7 +287,7 @@ pub trait IsInputType<S: ScalarValue>: GraphQLType<S> {
|
||||||
fn mark() {}
|
fn mark() {}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, S, T> IsInputType<S> for &T
|
impl<S, T> IsInputType<S> for &T
|
||||||
where
|
where
|
||||||
T: IsInputType<S> + ?Sized,
|
T: IsInputType<S> + ?Sized,
|
||||||
S: ScalarValue,
|
S: ScalarValue,
|
||||||
|
@ -364,4 +364,4 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, S> IsInputType<S> for str where S: ScalarValue {}
|
impl<S> IsInputType<S> for str where S: ScalarValue {}
|
||||||
|
|
|
@ -265,7 +265,7 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'e, S, T> GraphQLValueAsync<S> for Arc<T>
|
impl<S, T> GraphQLValueAsync<S> for Arc<T>
|
||||||
where
|
where
|
||||||
T: GraphQLValueAsync<S> + Send + ?Sized,
|
T: GraphQLValueAsync<S> + Send + ?Sized,
|
||||||
T::TypeInfo: Sync,
|
T::TypeInfo: Sync,
|
||||||
|
|
|
@ -194,8 +194,8 @@ impl PlaygroundHandler {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, CtxFactory, Query, Mutation, Subscription, CtxT, S> Handler
|
impl<CtxFactory, Query, Mutation, Subscription, CtxT, S> Handler
|
||||||
for GraphQLHandler<'a, CtxFactory, Query, Mutation, Subscription, CtxT, S>
|
for GraphQLHandler<'static, CtxFactory, Query, Mutation, Subscription, CtxT, S>
|
||||||
where
|
where
|
||||||
S: ScalarValue + Sync + Send + 'static,
|
S: ScalarValue + Sync + Send + 'static,
|
||||||
CtxFactory: Fn(&mut Request) -> IronResult<CtxT> + Send + Sync + 'static,
|
CtxFactory: Fn(&mut Request) -> IronResult<CtxT> + Send + Sync + 'static,
|
||||||
|
@ -203,7 +203,6 @@ where
|
||||||
Query: GraphQLType<S, Context = CtxT, TypeInfo = ()> + Send + Sync + 'static,
|
Query: GraphQLType<S, Context = CtxT, TypeInfo = ()> + Send + Sync + 'static,
|
||||||
Mutation: GraphQLType<S, Context = CtxT, TypeInfo = ()> + Send + Sync + 'static,
|
Mutation: GraphQLType<S, Context = CtxT, TypeInfo = ()> + Send + Sync + 'static,
|
||||||
Subscription: GraphQLType<S, Context = CtxT, TypeInfo = ()> + Send + Sync + 'static,
|
Subscription: GraphQLType<S, Context = CtxT, TypeInfo = ()> + Send + Sync + 'static,
|
||||||
'a: 'static,
|
|
||||||
{
|
{
|
||||||
fn handle(&self, req: &mut Request) -> IronResult<Response> {
|
fn handle(&self, req: &mut Request) -> IronResult<Response> {
|
||||||
let context = (self.context_factory)(req)?;
|
let context = (self.context_factory)(req)?;
|
||||||
|
|
|
@ -367,23 +367,13 @@ error[E0080]: evaluation of constant value failed
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
|
||||||
--> fail/interface/struct/attr_missing_field.rs:11:5
|
|
||||||
|
|
|
||||||
11 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
||||||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
error[E0080]: evaluation of constant value failed
|
||||||
--> fail/interface/struct/attr_missing_field.rs:11:5
|
--> fail/interface/struct/attr_missing_field.rs:11:5
|
||||||
|
|
|
|
||||||
11 | id: String,
|
11 | id: String,
|
||||||
| ^^ referenced constant has errors
|
| ^^ referenced constant has errors
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
error: any use of this value will cause an error
|
||||||
--> fail/interface/struct/attr_missing_field.rs:11:5
|
--> fail/interface/struct/attr_missing_field.rs:11:5
|
||||||
|
@ -413,6 +403,32 @@ error[E0080]: evaluation of constant value failed
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/struct/attr_missing_field.rs:11:5
|
||||||
|
|
|
||||||
|
11 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error: any use of this value will cause an error
|
||||||
|
--> fail/interface/struct/attr_missing_field.rs:11:5
|
||||||
|
|
|
||||||
|
11 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
||||||
|
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/struct/attr_missing_field.rs:11:5
|
||||||
|
|
|
||||||
|
11 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
error: any use of this value will cause an error
|
||||||
--> fail/interface/struct/attr_missing_field.rs:11:5
|
--> fail/interface/struct/attr_missing_field.rs:11:5
|
||||||
|
|
|
|
||||||
|
@ -439,22 +455,6 @@ error[E0080]: evaluation of constant value failed
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/struct/attr_missing_field.rs:11:5
|
|
||||||
|
|
|
||||||
11 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/struct/attr_missing_field.rs:11:5
|
|
||||||
|
|
|
||||||
11 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
error: any use of this value will cause an error
|
||||||
--> fail/interface/struct/attr_missing_field.rs:11:5
|
--> fail/interface/struct/attr_missing_field.rs:11:5
|
||||||
|
|
|
|
||||||
|
@ -859,86 +859,6 @@ error[E0080]: evaluation of constant value failed
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
|
||||||
--> fail/interface/struct/attr_missing_field.rs:11:5
|
|
||||||
|
|
|
||||||
11 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
||||||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/struct/attr_missing_field.rs:11:5
|
|
||||||
|
|
|
||||||
11 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
|
||||||
--> fail/interface/struct/attr_missing_field.rs:11:5
|
|
||||||
|
|
|
||||||
11 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
||||||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
|
||||||
= note: this error originates in the macro `$crate::assert_subtype` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
|
||||||
--> fail/interface/struct/attr_missing_field.rs:11:5
|
|
||||||
|
|
|
||||||
11 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
||||||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/struct/attr_missing_field.rs:11:5
|
|
||||||
|
|
|
||||||
11 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
|
||||||
--> fail/interface/struct/attr_missing_field.rs:11:5
|
|
||||||
|
|
|
||||||
11 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
||||||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/struct/attr_missing_field.rs:11:5
|
|
||||||
|
|
|
||||||
11 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/struct/attr_missing_field.rs:11:5
|
|
||||||
|
|
|
||||||
11 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/struct/attr_missing_field.rs:11:5
|
|
||||||
|
|
|
||||||
11 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
error[E0080]: evaluation of constant value failed
|
||||||
--> fail/interface/struct/attr_missing_field.rs:11:5
|
--> fail/interface/struct/attr_missing_field.rs:11:5
|
||||||
|
|
|
|
||||||
|
@ -982,3 +902,83 @@ error[E0080]: evaluation of constant value failed
|
||||||
| ^^ referenced constant has errors
|
| ^^ referenced constant has errors
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error: any use of this value will cause an error
|
||||||
|
--> fail/interface/struct/attr_missing_field.rs:11:5
|
||||||
|
|
|
||||||
|
11 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
||||||
|
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/struct/attr_missing_field.rs:11:5
|
||||||
|
|
|
||||||
|
11 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error: any use of this value will cause an error
|
||||||
|
--> fail/interface/struct/attr_missing_field.rs:11:5
|
||||||
|
|
|
||||||
|
11 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
||||||
|
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/struct/attr_missing_field.rs:11:5
|
||||||
|
|
|
||||||
|
11 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/struct/attr_missing_field.rs:11:5
|
||||||
|
|
|
||||||
|
11 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error: any use of this value will cause an error
|
||||||
|
--> fail/interface/struct/attr_missing_field.rs:11:5
|
||||||
|
|
|
||||||
|
11 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
||||||
|
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
||||||
|
= note: this error originates in the macro `$crate::assert_subtype` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error: any use of this value will cause an error
|
||||||
|
--> fail/interface/struct/attr_missing_field.rs:11:5
|
||||||
|
|
|
||||||
|
11 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
||||||
|
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/struct/attr_missing_field.rs:11:5
|
||||||
|
|
|
||||||
|
11 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/struct/attr_missing_field.rs:11:5
|
||||||
|
|
|
||||||
|
11 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
|
@ -367,23 +367,13 @@ error[E0080]: evaluation of constant value failed
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
|
||||||
--> fail/interface/struct/derive_missing_field.rs:12:5
|
|
||||||
|
|
|
||||||
12 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
||||||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
error[E0080]: evaluation of constant value failed
|
||||||
--> fail/interface/struct/derive_missing_field.rs:12:5
|
--> fail/interface/struct/derive_missing_field.rs:12:5
|
||||||
|
|
|
|
||||||
12 | id: String,
|
12 | id: String,
|
||||||
| ^^ referenced constant has errors
|
| ^^ referenced constant has errors
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
error: any use of this value will cause an error
|
||||||
--> fail/interface/struct/derive_missing_field.rs:12:5
|
--> fail/interface/struct/derive_missing_field.rs:12:5
|
||||||
|
@ -413,6 +403,32 @@ error[E0080]: evaluation of constant value failed
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/struct/derive_missing_field.rs:12:5
|
||||||
|
|
|
||||||
|
12 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error: any use of this value will cause an error
|
||||||
|
--> fail/interface/struct/derive_missing_field.rs:12:5
|
||||||
|
|
|
||||||
|
12 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
||||||
|
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/struct/derive_missing_field.rs:12:5
|
||||||
|
|
|
||||||
|
12 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
error: any use of this value will cause an error
|
||||||
--> fail/interface/struct/derive_missing_field.rs:12:5
|
--> fail/interface/struct/derive_missing_field.rs:12:5
|
||||||
|
|
|
|
||||||
|
@ -439,22 +455,6 @@ error[E0080]: evaluation of constant value failed
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/struct/derive_missing_field.rs:12:5
|
|
||||||
|
|
|
||||||
12 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/struct/derive_missing_field.rs:12:5
|
|
||||||
|
|
|
||||||
12 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
error: any use of this value will cause an error
|
||||||
--> fail/interface/struct/derive_missing_field.rs:12:5
|
--> fail/interface/struct/derive_missing_field.rs:12:5
|
||||||
|
|
|
|
||||||
|
@ -859,86 +859,6 @@ error[E0080]: evaluation of constant value failed
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
|
||||||
--> fail/interface/struct/derive_missing_field.rs:12:5
|
|
||||||
|
|
|
||||||
12 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
||||||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/struct/derive_missing_field.rs:12:5
|
|
||||||
|
|
|
||||||
12 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
|
||||||
--> fail/interface/struct/derive_missing_field.rs:12:5
|
|
||||||
|
|
|
||||||
12 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
||||||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
|
||||||
= note: this error originates in the macro `$crate::assert_subtype` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
|
||||||
--> fail/interface/struct/derive_missing_field.rs:12:5
|
|
||||||
|
|
|
||||||
12 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
||||||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/struct/derive_missing_field.rs:12:5
|
|
||||||
|
|
|
||||||
12 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
|
||||||
--> fail/interface/struct/derive_missing_field.rs:12:5
|
|
||||||
|
|
|
||||||
12 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
||||||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/struct/derive_missing_field.rs:12:5
|
|
||||||
|
|
|
||||||
12 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/struct/derive_missing_field.rs:12:5
|
|
||||||
|
|
|
||||||
12 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/struct/derive_missing_field.rs:12:5
|
|
||||||
|
|
|
||||||
12 | id: String,
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
error[E0080]: evaluation of constant value failed
|
||||||
--> fail/interface/struct/derive_missing_field.rs:12:5
|
--> fail/interface/struct/derive_missing_field.rs:12:5
|
||||||
|
|
|
|
||||||
|
@ -982,3 +902,83 @@ error[E0080]: evaluation of constant value failed
|
||||||
| ^^ referenced constant has errors
|
| ^^ referenced constant has errors
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error: any use of this value will cause an error
|
||||||
|
--> fail/interface/struct/derive_missing_field.rs:12:5
|
||||||
|
|
|
||||||
|
12 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
||||||
|
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/struct/derive_missing_field.rs:12:5
|
||||||
|
|
|
||||||
|
12 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error: any use of this value will cause an error
|
||||||
|
--> fail/interface/struct/derive_missing_field.rs:12:5
|
||||||
|
|
|
||||||
|
12 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
||||||
|
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/struct/derive_missing_field.rs:12:5
|
||||||
|
|
|
||||||
|
12 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/struct/derive_missing_field.rs:12:5
|
||||||
|
|
|
||||||
|
12 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error: any use of this value will cause an error
|
||||||
|
--> fail/interface/struct/derive_missing_field.rs:12:5
|
||||||
|
|
|
||||||
|
12 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
||||||
|
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
||||||
|
= note: this error originates in the macro `$crate::assert_subtype` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error: any use of this value will cause an error
|
||||||
|
--> fail/interface/struct/derive_missing_field.rs:12:5
|
||||||
|
|
|
||||||
|
12 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
||||||
|
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/struct/derive_missing_field.rs:12:5
|
||||||
|
|
|
||||||
|
12 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/struct/derive_missing_field.rs:12:5
|
||||||
|
|
|
||||||
|
12 | id: String,
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
|
@ -367,23 +367,13 @@ error[E0080]: evaluation of constant value failed
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
|
||||||
--> fail/interface/trait/missing_field.rs:11:8
|
|
||||||
|
|
|
||||||
11 | fn id(&self) -> &str;
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
||||||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
error[E0080]: evaluation of constant value failed
|
||||||
--> fail/interface/trait/missing_field.rs:11:8
|
--> fail/interface/trait/missing_field.rs:11:8
|
||||||
|
|
|
|
||||||
11 | fn id(&self) -> &str;
|
11 | fn id(&self) -> &str;
|
||||||
| ^^ referenced constant has errors
|
| ^^ referenced constant has errors
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
error: any use of this value will cause an error
|
||||||
--> fail/interface/trait/missing_field.rs:11:8
|
--> fail/interface/trait/missing_field.rs:11:8
|
||||||
|
@ -413,6 +403,32 @@ error[E0080]: evaluation of constant value failed
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/trait/missing_field.rs:11:8
|
||||||
|
|
|
||||||
|
11 | fn id(&self) -> &str;
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error: any use of this value will cause an error
|
||||||
|
--> fail/interface/trait/missing_field.rs:11:8
|
||||||
|
|
|
||||||
|
11 | fn id(&self) -> &str;
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
||||||
|
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/trait/missing_field.rs:11:8
|
||||||
|
|
|
||||||
|
11 | fn id(&self) -> &str;
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
error: any use of this value will cause an error
|
||||||
--> fail/interface/trait/missing_field.rs:11:8
|
--> fail/interface/trait/missing_field.rs:11:8
|
||||||
|
|
|
|
||||||
|
@ -439,22 +455,6 @@ error[E0080]: evaluation of constant value failed
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/trait/missing_field.rs:11:8
|
|
||||||
|
|
|
||||||
11 | fn id(&self) -> &str;
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/trait/missing_field.rs:11:8
|
|
||||||
|
|
|
||||||
11 | fn id(&self) -> &str;
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
error: any use of this value will cause an error
|
||||||
--> fail/interface/trait/missing_field.rs:11:8
|
--> fail/interface/trait/missing_field.rs:11:8
|
||||||
|
|
|
|
||||||
|
@ -859,86 +859,6 @@ error[E0080]: evaluation of constant value failed
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
|
||||||
--> fail/interface/trait/missing_field.rs:11:8
|
|
||||||
|
|
|
||||||
11 | fn id(&self) -> &str;
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
||||||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/trait/missing_field.rs:11:8
|
|
||||||
|
|
|
||||||
11 | fn id(&self) -> &str;
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
|
||||||
--> fail/interface/trait/missing_field.rs:11:8
|
|
||||||
|
|
|
||||||
11 | fn id(&self) -> &str;
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
||||||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
|
||||||
= note: this error originates in the macro `$crate::assert_subtype` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
|
||||||
--> fail/interface/trait/missing_field.rs:11:8
|
|
||||||
|
|
|
||||||
11 | fn id(&self) -> &str;
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
||||||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/trait/missing_field.rs:11:8
|
|
||||||
|
|
|
||||||
11 | fn id(&self) -> &str;
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error: any use of this value will cause an error
|
|
||||||
--> fail/interface/trait/missing_field.rs:11:8
|
|
||||||
|
|
|
||||||
11 | fn id(&self) -> &str;
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
||||||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/trait/missing_field.rs:11:8
|
|
||||||
|
|
|
||||||
11 | fn id(&self) -> &str;
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/trait/missing_field.rs:11:8
|
|
||||||
|
|
|
||||||
11 | fn id(&self) -> &str;
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
|
||||||
--> fail/interface/trait/missing_field.rs:11:8
|
|
||||||
|
|
|
||||||
11 | fn id(&self) -> &str;
|
|
||||||
| ^^ referenced constant has errors
|
|
||||||
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
||||||
|
|
||||||
error[E0080]: evaluation of constant value failed
|
error[E0080]: evaluation of constant value failed
|
||||||
--> fail/interface/trait/missing_field.rs:11:8
|
--> fail/interface/trait/missing_field.rs:11:8
|
||||||
|
|
|
|
||||||
|
@ -982,3 +902,83 @@ error[E0080]: evaluation of constant value failed
|
||||||
| ^^ referenced constant has errors
|
| ^^ referenced constant has errors
|
||||||
|
|
|
|
||||||
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error: any use of this value will cause an error
|
||||||
|
--> fail/interface/trait/missing_field.rs:11:8
|
||||||
|
|
|
||||||
|
11 | fn id(&self) -> &str;
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
||||||
|
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/trait/missing_field.rs:11:8
|
||||||
|
|
|
||||||
|
11 | fn id(&self) -> &str;
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error: any use of this value will cause an error
|
||||||
|
--> fail/interface/trait/missing_field.rs:11:8
|
||||||
|
|
|
||||||
|
11 | fn id(&self) -> &str;
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
||||||
|
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/trait/missing_field.rs:11:8
|
||||||
|
|
|
||||||
|
11 | fn id(&self) -> &str;
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/trait/missing_field.rs:11:8
|
||||||
|
|
|
||||||
|
11 | fn id(&self) -> &str;
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::const_concat` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error: any use of this value will cause an error
|
||||||
|
--> fail/interface/trait/missing_field.rs:11:8
|
||||||
|
|
|
||||||
|
11 | fn id(&self) -> &str;
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
||||||
|
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
||||||
|
= note: this error originates in the macro `$crate::assert_subtype` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error: any use of this value will cause an error
|
||||||
|
--> fail/interface/trait/missing_field.rs:11:8
|
||||||
|
|
|
||||||
|
11 | fn id(&self) -> &str;
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
||||||
|
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/trait/missing_field.rs:11:8
|
||||||
|
|
|
||||||
|
11 | fn id(&self) -> &str;
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
|
error[E0080]: evaluation of constant value failed
|
||||||
|
--> fail/interface/trait/missing_field.rs:11:8
|
||||||
|
|
|
||||||
|
11 | fn id(&self) -> &str;
|
||||||
|
| ^^ referenced constant has errors
|
||||||
|
|
|
||||||
|
= note: this error originates in the macro `$crate::format_type` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
Loading…
Reference in a new issue