JMAP Registry API implementation - part 10

This commit is contained in:
mdecimus
2026-03-06 19:50:10 +01:00
parent 9f9ddee965
commit d15efc6fb9
67 changed files with 2186 additions and 1879 deletions

View File

@@ -201,6 +201,11 @@ impl<T: Property> SetError<T> {
self
}
pub fn with_object_id_opt(mut self, object_id: Option<ObjectId>) -> Self {
self.0.object_id = object_id;
self
}
pub fn with_linked_objects(mut self, linked_objects: Vec<ObjectId>) -> Self {
self.0.linked_objects = linked_objects;
self