Merge pull request #19 from rowedonalde/display-compressionmethod
Implement Display trait for CompressionMethod
This commit is contained in:
commit
d5c1be6870
1 changed files with 22 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
//! Possible ZIP compression methods.
|
||||
|
||||
use std::fmt;
|
||||
|
||||
/// Compression methods for the contents of a ZIP file.
|
||||
#[derive(Copy, Clone, PartialEq, Debug)]
|
||||
pub enum CompressionMethod
|
||||
|
@ -39,6 +41,13 @@ impl CompressionMethod {
|
|||
}
|
||||
}
|
||||
|
||||
impl fmt::Display for CompressionMethod {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
// Just duplicate what the Debug format looks like, i.e, the enum key:
|
||||
write!(f, "{:?}", self)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod test {
|
||||
use super::CompressionMethod;
|
||||
|
@ -76,4 +85,17 @@ mod test {
|
|||
check_match(method);
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn to_display_fmt() {
|
||||
fn check_match(method: CompressionMethod) {
|
||||
let debug_str = format!("{:?}", method);
|
||||
let display_str = format!("{}", method);
|
||||
assert_eq!(debug_str, display_str);
|
||||
}
|
||||
|
||||
for method in methods() {
|
||||
check_match(method);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue