Builder: set full hash display.
(mut self, full_hash: bool)
| 169 | |
| 170 | /// Builder: set full hash display. |
| 171 | pub fn with_full_hash(mut self, full_hash: bool) -> Self { |
| 172 | self.full_hash = full_hash; |
| 173 | self |
| 174 | } |
| 175 | |
| 176 | /// Builder: set whether to show all history (including inherited). |
| 177 | pub fn with_all(mut self, all: bool) -> Self { |
no outgoing calls