dev #2

Merged
candifloss merged 10 commits from dev into main 2024-09-27 10:06:26 +00:00
2 changed files with 5 additions and 7 deletions
Showing only changes of commit b572fa1cc2 - Show all commits

View File

@ -4,10 +4,7 @@ use std::collections::HashMap;
use std::hash::BuildHasher;
use zvariant::OwnedValue; */
pub fn serialize_actions<S>(
actions: &[String], // Changed to a slice
serializer: S,
) -> Result<S::Ok, S::Error>
pub fn serialize_actions<S>(actions: &[String], serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
@ -22,6 +19,7 @@ where
map.serialize(serializer)
}
/*
pub fn serialize_hints<S, H>(
hints: &HashMap<String, OwnedValue, H>,

View File

@ -50,7 +50,7 @@ impl Notification {
}
// Key:Val pairs of actions
pub fn actions(&self) -> Vec<(String, String)> {
/*pub fn actions(&self) -> Vec<(String, String)> {
let mut actions: Vec<(String, String)> = vec![];
let acts = &self.actions;
let act_len = acts.len();
@ -68,13 +68,13 @@ impl Notification {
}
actions
}
/*
*/
pub fn actions(&self) -> Vec<(String, String)> {
self.actions
.chunks(2)
.map(|chunk| (chunk[0].clone(), chunk[1].clone()))
.collect()
} */
}
// Hints
pub fn hints(&self) -> &HashMap<String, OwnedValue> {