Enum weld_codegen::config::ModelSource[][src]

pub enum ModelSource {
    Url {
        url: String,
        files: Vec<String>,
    },
    Path {
        path: PathBuf,
        files: Vec<String>,
    },
}
Expand description

Source directory or url prefix for finding model files For Paths, the path and files can be model files, or directories, which will be searched recursively for model files with .json or .smithy extensions. files array is optional if url or path directly references a model file,

Variants

Url
Show fields

Fields of Url

url: Stringfiles: Vec<String>
Path
Show fields

Fields of Path

path: PathBuffiles: Vec<String>

Implementations

convenience function to create a ModelSource for a single file path

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Formats the value using the given formatter. Read more

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.