Skip to content

Commit

Permalink
towards filling forms
Browse files Browse the repository at this point in the history
  • Loading branch information
s3bk committed Nov 30, 2023
1 parent 4eddc16 commit 643651b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pdf/src/object/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -924,13 +924,13 @@ pub struct SignatureReferenceDictionary {
pub other: Dictionary
}

#[derive(Object, ObjectWrite, Debug, DataSize)]
#[derive(Object, ObjectWrite, Debug, DataSize, Clone)]
pub struct FieldDictionary {
#[pdf(key="FT")]
pub typ: Option<FieldType>,

#[pdf(key="Parent")]
pub parent: Option<MaybeRef<FieldDictionary>>,
pub parent: Option<Ref<FieldDictionary>>,

#[pdf(key="Kids")]
pub kids: Vec<Ref<FieldDictionary>>,
Expand Down

0 comments on commit 643651b

Please sign in to comment.