SieveScripts and VacationResponse implementation

This commit is contained in:
Mauro D
2023-05-19 15:16:48 +00:00
parent 4e4632571c
commit bc40256ac4
45 changed files with 2188 additions and 325 deletions

View File

@@ -133,6 +133,15 @@ impl BatchBuilder {
pub fn is_empty(&self) -> bool {
self.ops.is_empty()
|| self.ops.iter().any(|op| {
!matches!(
op,
Operation::AccountId { .. }
| Operation::Collection { .. }
| Operation::DocumentId { .. }
| Operation::AssertValue { .. }
)
})
}
}