Skip to main content

OpenApiParserOptions

Struct OpenApiParserOptions 

Source
pub struct OpenApiParserOptions {
Show 13 fields pub generate_client: bool, pub generate_validation: bool, pub derive_serde: bool, pub derive_default: bool, pub make_fields_optional: bool, pub max_depth: usize, pub include_tags: Option<HashSet<String>>, pub exclude_tags: Option<HashSet<String>>, pub generate_builders: bool, pub generate_docs: bool, pub type_prefix: Option<String>, pub type_suffix: Option<String>, pub module_name: String,
}
Expand description

Options for configuring the OpenAPI parser

Fields§

§generate_client: bool

Generate API client traits

§generate_validation: bool

Generate validation derives and attributes

§derive_serde: bool

Add serde derives to generated structs

§derive_default: bool

Add Default derive to generated structs

§make_fields_optional: bool

Make all fields optional (wrap in Option)

§max_depth: usize

Maximum depth for nested schemas (prevents infinite recursion)

§include_tags: Option<HashSet<String>>

Tag names to filter (only include these tags)

§exclude_tags: Option<HashSet<String>>

Tag names to exclude

§generate_builders: bool

Generate builder pattern for request types

§generate_docs: bool

Add documentation comments from OpenAPI descriptions

§type_prefix: Option<String>

Prefix for generated type names

§type_suffix: Option<String>

Suffix for generated type names

§module_name: String

Module name for generated code

Implementations§

Source§

impl OpenApiParserOptions

Source

pub fn builder() -> OpenApiParserOptionsBuilder

Create a new builder for parser options

Source

pub fn should_include_tag(&self, tag: &str) -> bool

Check if a tag should be included

Source

pub fn format_type_name(&self, name: &str) -> String

Apply prefix and suffix to type name

Trait Implementations§

Source§

impl Clone for OpenApiParserOptions

Source§

fn clone(&self) -> OpenApiParserOptions

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for OpenApiParserOptions

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for OpenApiParserOptions

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.