Set the previous provenance graph hash (for session resume chaining).
(mut self, hash: Hash)
| 154 | |
| 155 | /// Set the previous provenance graph hash (for session resume chaining). |
| 156 | pub fn previous(mut self, hash: Hash) -> Self { |
| 157 | self.previous = Some(hash); |
| 158 | self |
| 159 | } |
| 160 | |
| 161 | /// Set the timestamp (Unix epoch seconds). Defaults to now. |
| 162 | pub fn timestamp(mut self, ts: i64) -> Self { |
no outgoing calls