parent
cd1bd5f7da
commit
ad442d6678
@ -0,0 +1,14 @@
|
|||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct CborFormatter;
|
||||||
|
|
||||||
|
impl Format for CborFormatter
|
||||||
|
{
|
||||||
|
fn encode<W: io::Write>(cfg: &Config, to: W, obj: &Object) -> Result<usize, Error> {
|
||||||
|
todo!()
|
||||||
|
}
|
||||||
|
fn decode<R: io::Read>(cfg: &Config, from: R) -> Result<Object, Error> {
|
||||||
|
todo!()
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct SExpressionFormatter;
|
||||||
|
|
||||||
|
impl Format for SExpressionFormatter
|
||||||
|
{
|
||||||
|
fn encode<W: io::Write>(cfg: &Config, to: W, obj: &Object) -> Result<usize, Error> {
|
||||||
|
todo!()
|
||||||
|
}
|
||||||
|
fn decode<R: io::Read>(cfg: &Config, from: R) -> Result<Object, Error> {
|
||||||
|
todo!()
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue