Remove unnecessary async_trait usages

This commit is contained in:
Lennart
2024-09-29 12:47:38 +02:00
parent 11e929a2de
commit 93e28a1a32
2 changed files with 0 additions and 2 deletions

View File

@@ -64,7 +64,6 @@ pub enum PrincipalPropName {
CalendarUserAddressSet,
}
#[async_trait(?Send)]
impl Resource for PrincipalFile {
type PropName = PrincipalPropName;
type Prop = PrincipalProp;

View File

@@ -10,7 +10,6 @@ use serde::{Deserialize, Serialize};
use std::str::FromStr;
use strum::VariantNames;
#[async_trait(?Send)]
pub trait Resource: Clone {
type PropName: FromStr + VariantNames + Clone;
type Prop: Serialize + for<'de> Deserialize<'de> + fmt::Debug + InvalidProperty;