(
&self,
object_type: &str,
id: &str,
name: &str,
payload: &[u8],
labels: Option<&str>,
)
| 592 | #[cfg(test)] |
| 593 | impl Store { |
| 594 | pub async fn put( |
| 595 | &self, |
| 596 | object_type: &str, |
| 597 | id: &str, |
| 598 | name: &str, |
| 599 | payload: &[u8], |
| 600 | labels: Option<&str>, |
| 601 | ) -> PersistenceResult<()> { |
| 602 | store_dispatch!(self.put(object_type, id, name, payload, labels)) |
| 603 | } |
| 604 | |
| 605 | pub async fn put_message<T: Message + ObjectType + ObjectId + ObjectName + ObjectLabels>( |
| 606 | &self, |
no outgoing calls