Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Move crate::value nested mods up
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Feb 10, 2021
1 parent 0e580f2 commit f72dc19
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/value/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
mod de;
mod from;
mod index;
mod partial_eq;
mod ser;

use crate::ser::SerializerToYaml;
use crate::{Error, Mapping};
use serde::de::{Deserialize, DeserializeOwned, IntoDeserializer};
Expand Down Expand Up @@ -640,10 +646,3 @@ impl<'de> IntoDeserializer<'de, Error> for Value {
self
}
}

mod from;
mod index;
mod partial_eq;

mod de;
mod ser;

0 comments on commit f72dc19

Please sign in to comment.