Get the change header without loading the full change. This is more efficient when only metadata is needed. # Arguments `hash` - The content hash of the change # Returns The change header (message, authors, timestamp, etc.)
(&self, hash: &Hash)
| 205 | /// |
| 206 | /// The change header (message, authors, timestamp, etc.) |
| 207 | fn get_header(&self, hash: &Hash) -> Result<ChangeHeader, Self::Error> { |
| 208 | Ok(self.get_change(hash)?.hashed.header) |
| 209 | } |
| 210 | |
| 211 | /// Get the dependencies of a change. |
| 212 | /// |