pub struct Serde<T>(/* private fields */);Expand description
Wrapper for custom deserialization from Hocon.
Implemented for Duration
§As a newtype wrapper
#[derive(Deserialize, Debug)]
struct StructWithDuration {
timeout: Serde<Duration>,
}
let my_struct: StructWithDuration = hocon::de::from_str(doc).unwrap();
assert_eq!(*my_struct.timeout, Duration::from_secs(1));§As a serde attribute
#[derive(Deserialize, Debug)]
struct StructWithDuration {
#[serde(deserialize_with = "Serde::<Duration>::with")]
timeout: Duration,
}
let my_struct: StructWithDuration = hocon::de::from_str(doc).unwrap();
assert_eq!(my_struct.timeout, Duration::from_secs(1));Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Serde<Duration>
impl<'de> Deserialize<'de> for Serde<Duration>
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<T> Freeze for Serde<T>where
T: Freeze,
impl<T> RefUnwindSafe for Serde<T>where
T: RefUnwindSafe,
impl<T> Send for Serde<T>where
T: Send,
impl<T> Sync for Serde<T>where
T: Sync,
impl<T> Unpin for Serde<T>where
T: Unpin,
impl<T> UnwindSafe for Serde<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more