Skip to content

Commit

Permalink
Move two types from global scope to modules
Browse files Browse the repository at this point in the history
  • Loading branch information
laurmaedje committed Jun 1, 2024
1 parent 1ca5c37 commit 1115bfb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ pub mod writers {
pub use functions::{
ExponentialFunction, PostScriptFunction, SampledFunction, StitchingFunction,
};
pub use object::DecodeParms;
pub use object::{NameTree, NameTreeEntries, NumberTree, NumberTreeEntries};
pub use renditions::{MediaClip, MediaPermissions, MediaPlayParams, Rendition};
pub use structure::{
Expand Down Expand Up @@ -171,6 +172,7 @@ pub mod types {
CheckBoxState, ChoiceOptions, FieldFlags, FieldType, Quadding, SigFlags,
};
pub use functions::{InterpolationOrder, PostScriptOp};
pub use object::Predictor;
pub use renditions::{MediaClipType, RenditionType, TempFileType};
pub use structure::{
Direction, NumberingStyle, OutlineItemFlags, PageLayout, PageMode, StructRole,
Expand All @@ -183,8 +185,8 @@ pub mod types {
pub use self::chunk::Chunk;
pub use self::content::Content;
pub use self::object::{
Array, Date, DecodeParms, Dict, Filter, Finish, Name, Null, Obj, Predictor,
Primitive, Rect, Ref, Rewrite, Str, Stream, TextStr, TypedArray, TypedDict, Writer,
Array, Date, Dict, Filter, Finish, Name, Null, Obj, Primitive, Rect, Ref, Rewrite,
Str, Stream, TextStr, TypedArray, TypedDict, Writer,
};

use std::fmt::{self, Debug, Formatter};
Expand Down

0 comments on commit 1115bfb

Please sign in to comment.