Set optional notes.
(mut self, notes: impl Into<String>)
| 634 | |
| 635 | /// Set optional notes. |
| 636 | pub fn notes(mut self, notes: impl Into<String>) -> Self { |
| 637 | self.notes = Some(notes.into()); |
| 638 | self |
| 639 | } |
| 640 | |
| 641 | /// Set the timestamp (Unix epoch seconds). Defaults to now. |
| 642 | pub fn timestamp(mut self, ts: i64) -> Self { |
no outgoing calls
no test coverage detected