We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc4749b commit bf0c573Copy full SHA for bf0c573
influxdb_derive/src/writeable.rs
@@ -263,12 +263,12 @@ pub fn expand_writeable(input: DeriveInput) -> syn::Result<TokenStream> {
263
}
264
265
266
- impl<T> ::core::error::Error for Error<T>
+ impl<T> ::std::error::Error for Error<T>
267
where
268
Timestamp: TryFrom<T>,
269
- <Timestamp as TryFrom<T>>::Error: ::core::error::Error + 'static
+ <Timestamp as TryFrom<T>>::Error: ::std::error::Error + 'static
270
{
271
- fn source(&self) -> Option<&(dyn ::core::error::Error + 'static)> {
+ fn source(&self) -> Option<&(dyn ::std::error::Error + 'static)> {
272
match self {
273
Self::TimestampError(err) => Some(err),
274
Self::QueryError(err) => Some(err)
0 commit comments