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