diff --git a/core/api-keys/src/graphql/schema.rs b/core/api-keys/src/graphql/schema.rs index 9d906202da..3b72394f30 100644 --- a/core/api-keys/src/graphql/schema.rs +++ b/core/api-keys/src/graphql/schema.rs @@ -10,13 +10,11 @@ pub struct AuthSubject { #[derive(Clone, Copy)] pub struct Timestamp(DateTime); - impl From> for Timestamp { fn from(dt: DateTime) -> Self { Timestamp(dt) } } - impl From for DateTime { fn from(Timestamp(dt): Timestamp) -> Self { dt