Builder: set the starting sequence number.
(mut self, from: u64)
| 167 | |
| 168 | /// Builder: set the starting sequence number. |
| 169 | pub fn with_from(mut self, from: u64) -> Self { |
| 170 | self.from = Some(from); |
| 171 | self |
| 172 | } |
| 173 | |
| 174 | /// Builder: set full hash display. |
| 175 | pub fn with_full_hash(mut self, full_hash: bool) -> Self { |
no outgoing calls