clean doc

This commit is contained in:
Jean-Marie Mineau 2023-08-30 14:18:32 +02:00
parent b5ae8c5088
commit df2a441148
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
13 changed files with 84 additions and 80 deletions

View file

@ -1,10 +1,10 @@
//! The encoded value format: https://source.android.com/docs/core/runtime/dex-format#encoding
//! The encoded value format: <https://source.android.com/docs/core/runtime/dex-format#encoding>
use crate::{EncodedAnnotation, EncodedArray, Error, ReadSeek, Result, Serializable};
use std::io::Write;
/// An encoded value of arbitrary hierachically structured data:
/// https://source.android.com/docs/core/runtime/dex-format#encoding
/// <https://source.android.com/docs/core/runtime/dex-format#encoding>
#[derive(Debug, Clone)]
pub enum EncodedValue {
Byte(i8),