aerogramme/src/dav/encoder.rs

17 lines
236 B
Rust
Raw Normal View History

2024-02-28 09:20:28 +00:00
pub trait Encode {
fn write(&self, a: &mut u64) -> String;
}
#[cfg(test)]
mod tests {
// Note this useful idiom: importing names from outer (for mod tests) scope.
use super::*;
#[test]
fn test_href() {
}
}