pub trait Parse: Sealed {
    fn parse_smithy_primitive(input: &str) -> Result<Self, PrimitiveParseError>
    where
        Self: Sized
; }
Expand description

Sealed trait for custom parsing of primitive types

Required Methods

Parses a Smithy primitive from a string.

Implementations on Foreign Types

Implementors