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