Set durabilities for low-durability fields on high-durability inputs (#12627)

This commit is contained in:
Micha Reiser 2024-08-02 19:42:34 +02:00 committed by GitHub
parent dfb08856eb
commit 12177a42e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 50 additions and 51 deletions

View file

@ -7,7 +7,7 @@
/// * The last modification time of the file.
/// * The hash of the file's content.
/// * The revision as it comes from an external system, for example the LSP.
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
#[derive(Copy, Clone, Debug, Eq, PartialEq, Default)]
pub struct FileRevision(u128);
impl FileRevision {