Enum serde_derive_internals::attr::Default
[−]
[src]
pub enum Default { None, Default, Path(Path), }
Represents the default to use for a field when deserializing.
Variants
None
Field must always be specified because it does not have a default.
Default
The default is given by std::default::Default::default()
.
Path(Path)
The default is given by this function.