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

@ -4,7 +4,7 @@ use std::io::Write;
// To derive Serializable
use crate as androscalpel_serializer;
/// Encoded Annotation https://source.android.com/docs/core/runtime/dex-format#encoded-annotation
/// <https://source.android.com/docs/core/runtime/dex-format#encoded-annotation>
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct EncodedAnnotation {
/// Type of the annotation. This must be a class (not array or primitive) type.
@ -20,7 +20,7 @@ impl EncodedAnnotation {
}
}
/// Annotation: https://source.android.com/docs/core/runtime/dex-format#annotation-element
/// <https://source.android.com/docs/core/runtime/dex-format#annotation-element>
#[derive(Serializable, Debug, Clone, PartialEq, Eq)]
pub struct AnnotationElement {
pub name_idx: Uleb128,