remove unicode normalization and std references

This commit is contained in:
Tadeo hepperle
2024-02-14 16:12:53 +01:00
parent a0a79c4290
commit cc33870c6b
8 changed files with 23 additions and 67 deletions
+5 -5
View File
@@ -74,11 +74,11 @@ pub trait RuntimeApiPayload {
#[derive(Derivative)]
#[derivative(
Clone(bound = "ArgsData: Clone"),
Debug(bound = "ArgsData: std::fmt::Debug"),
Eq(bound = "ArgsData: std::cmp::Eq"),
Ord(bound = "ArgsData: std::cmp::Ord"),
PartialEq(bound = "ArgsData: std::cmp::PartialEq"),
PartialOrd(bound = "ArgsData: std::cmp::PartialOrd")
Debug(bound = "ArgsData: core::fmt::Debug"),
Eq(bound = "ArgsData: core::cmp::Eq"),
Ord(bound = "ArgsData: core::cmp::Ord"),
PartialEq(bound = "ArgsData: core::cmp::PartialEq"),
PartialOrd(bound = "ArgsData: core::cmp::PartialOrd")
)]
pub struct Payload<ArgsData, ReturnTy> {
trait_name: Cow<'static, str>,