add encoded scalar values
This commit is contained in:
parent
49d6094d6f
commit
6020b173a0
4 changed files with 713 additions and 0 deletions
18
androscalpel_serializer/src/annotation.rs
Normal file
18
androscalpel_serializer/src/annotation.rs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
use crate::{ReadSeek, Result, Serializable};
|
||||
use std::io::Write;
|
||||
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
pub struct EncodedAnnotation;
|
||||
|
||||
impl Serializable for EncodedAnnotation {
|
||||
fn serialize(&self, _output: &mut dyn Write) -> Result<()> {
|
||||
todo!()
|
||||
}
|
||||
fn deserialize(_input: &mut dyn ReadSeek) -> Result<Self> {
|
||||
todo!()
|
||||
}
|
||||
|
||||
fn size(&self) -> usize {
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue