use crate::{Object, Link}; pub const PUBLIC : &str = "https://www.w3.org/ns/activitystreams#Public"; pub trait Addressed { fn addressed(&self) -> Vec; } #[cfg(feature = "unstructured")] impl Addressed for serde_json::Value { fn addressed(&self) -> Vec { let mut to : Vec = self.to().map(|x| x.href().to_string()).collect(); to.append(&mut self.bto().map(|x| x.href().to_string()).collect()); to.append(&mut self.cc().map(|x| x.href().to_string()).collect()); to.append(&mut self.bcc().map(|x| x.href().to_string()).collect()); to } }