pub type DisallowedPathWithoutReplacement = DisallowedPath<false>;
Aliased Type§
struct DisallowedPathWithoutReplacement {
path: String,
reason: Option<String>,
replacement: Option<String>,
}
Fields§
§path: String
§reason: Option<String>
§replacement: Option<String>
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 72 bytes
Implementations
Trait Implementations
Source§impl<const REPLACEMENT_ALLOWED: bool> Debug for DisallowedPath<REPLACEMENT_ALLOWED>
impl<const REPLACEMENT_ALLOWED: bool> Debug for DisallowedPath<REPLACEMENT_ALLOWED>
Source§impl<'de, const REPLACEMENT_ALLOWED: bool> Deserialize<'de> for DisallowedPath<REPLACEMENT_ALLOWED>
impl<'de, const REPLACEMENT_ALLOWED: bool> Deserialize<'de> for DisallowedPath<REPLACEMENT_ALLOWED>
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