diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-17 12:15:44 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-17 12:15:44 +0100 |
commit | 4a33ac2265dae0e8fd1f7fbaec54ab7120334cbe (patch) | |
tree | 6b9bbbda40d64305c6e452af38cba4daed254105 /src/storage/garage.rs | |
parent | 7eb690e49dd995663e8ea35b1a1f5b14584b4509 (diff) | |
download | aerogramme-4a33ac2265dae0e8fd1f7fbaec54ab7120334cbe.tar.gz aerogramme-4a33ac2265dae0e8fd1f7fbaec54ab7120334cbe.zip |
incoming has been fully ported
Diffstat (limited to 'src/storage/garage.rs')
-rw-r--r-- | src/storage/garage.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/storage/garage.rs b/src/storage/garage.rs index d6ac7ac..f458aeb 100644 --- a/src/storage/garage.rs +++ b/src/storage/garage.rs @@ -67,6 +67,12 @@ impl IRowRef for GrgRef { } } +impl std::fmt::Debug for GrgRef { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + unimplemented!(); + } +} + impl IRowValue for GrgValue { fn to_ref(&self) -> RowRef { unimplemented!(); |