We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d001f18 + 58afe33 commit 9f6b4b6Copy full SHA for 9f6b4b6
src/ffi/rust.rs
@@ -136,7 +136,8 @@ impl From<FlushCompress> for MZFlush {
136
fn from(value: FlushCompress) -> Self {
137
match value {
138
FlushCompress::None => Self::None,
139
- FlushCompress::Partial | FlushCompress::Sync => Self::Sync,
+ FlushCompress::Partial => Self::Partial,
140
+ FlushCompress::Sync => Self::Sync,
141
FlushCompress::Full => Self::Full,
142
FlushCompress::Finish => Self::Finish,
143
}
0 commit comments