Improved cache memory layout

This commit is contained in:
mdecimus
2025-04-13 08:40:40 +02:00
parent 15651c26a1
commit 0568456d29
51 changed files with 716 additions and 590 deletions

View File

@@ -14,7 +14,7 @@ use crate::{
types::{
blob::BlobId,
id::Id,
state::{State, StateChange},
state::State,
value::{Object, SetValue, Value},
},
};
@@ -52,9 +52,6 @@ pub struct CopyResponse {
#[serde(rename = "notCreated")]
#[serde(skip_serializing_if = "VecMap::is_empty")]
pub not_created: VecMap<Id, SetError>,
#[serde(skip)]
pub state_change: Option<StateChange>,
}
#[derive(Debug, Clone)]

View File

@@ -20,7 +20,7 @@ use crate::{
id::Id,
keyword::Keyword,
property::Property,
state::{State, StateChange},
state::State,
value::{Object, SetValueMap, Value},
},
};
@@ -59,9 +59,6 @@ pub struct ImportEmailResponse {
#[serde(rename = "notCreated")]
#[serde(skip_serializing_if = "VecMap::is_empty")]
pub not_created: VecMap<String, SetError>,
#[serde(skip)]
pub state_change: Option<StateChange>,
}
impl JsonObjectParser for ImportEmailRequest {