apb 0.1.0

Traits and types to handle ActivityPub objects
Documentation
1
2
3
4
5
6
7
8
9
pub trait Profile : super::Object {
	// not a Node because it's always embedded and one
	fn describes(&self) -> crate::Node<Self::Object> { crate::Node::Empty }
}

#[cfg(feature = "unstructured")]
impl Profile for serde_json::Value {

}