Set the timestamp (Unix epoch seconds). Defaults to now.
(mut self, ts: i64)
| 640 | |
| 641 | /// Set the timestamp (Unix epoch seconds). Defaults to now. |
| 642 | pub fn timestamp(mut self, ts: i64) -> Self { |
| 643 | self.timestamp = Some(ts); |
| 644 | self |
| 645 | } |
| 646 | |
| 647 | /// Build the attestation. |
| 648 | pub fn build(self) -> Attestation { |
no outgoing calls
no test coverage detected