pub struct AnyOfBuilder { /* private fields */ }
Implementations§
Source§impl AnyOfBuilder
impl AnyOfBuilder
Sourcepub fn new() -> AnyOfBuilder
pub fn new() -> AnyOfBuilder
Constructs a new AnyOfBuilder
.
Source§impl AnyOfBuilder
impl AnyOfBuilder
Sourcepub fn item<I: Into<RefOr<Schema>>>(self, component: I) -> Self
pub fn item<I: Into<RefOr<Schema>>>(self, component: I) -> Self
Adds a given Schema
to AnyOf
Composite Object.
Sourcepub fn schema_type<T: Into<SchemaType>>(self, schema_type: T) -> Self
pub fn schema_type<T: Into<SchemaType>>(self, schema_type: T) -> Self
Add or change type of the object e.g. to change type to string
use value SchemaType::Type(Type::String)
.
Sourcepub fn description<I: Into<String>>(self, description: Option<I>) -> Self
pub fn description<I: Into<String>>(self, description: Option<I>) -> Self
Add or change optional description for AnyOf
component.
Sourcepub fn default(self, default: Option<Value>) -> Self
pub fn default(self, default: Option<Value>) -> Self
Add or change default value for the object which is provided when user has not provided the input in Swagger UI.
Sourcepub fn example(self, example: Option<Value>) -> Self
👎Deprecated: Since OpenAPI 3.1 prefer using examples
pub fn example(self, example: Option<Value>) -> Self
examples
Add or change example shown in UI of the value for richer documentation.
Deprecated since 3.0.x. Prefer AllOfBuilder::examples
instead
Sourcepub fn examples<I: IntoIterator<Item = V>, V: Into<Value>>(
self,
examples: I,
) -> Self
pub fn examples<I: IntoIterator<Item = V>, V: Into<Value>>( self, examples: I, ) -> Self
Add or change examples shown in UI of the value for richer documentation.
Sourcepub fn discriminator(self, discriminator: Option<Discriminator>) -> Self
pub fn discriminator(self, discriminator: Option<Discriminator>) -> Self
Add or change discriminator field of the composite AnyOf
type.
Sourcepub fn extensions(self, extensions: Option<Extensions>) -> Self
pub fn extensions(self, extensions: Option<Extensions>) -> Self
Add openapi extensions (x-something
) for AnyOf
.
Sourcepub fn to_array_builder(self) -> ArrayBuilder
pub fn to_array_builder(self) -> ArrayBuilder
Construct a new ArrayBuilder
with this component set to ArrayBuilder::items
.
Trait Implementations§
Source§impl Default for AnyOfBuilder
impl Default for AnyOfBuilder
Source§impl From<AnyOf> for AnyOfBuilder
impl From<AnyOf> for AnyOfBuilder
Source§impl From<AnyOfBuilder> for AnyOf
impl From<AnyOfBuilder> for AnyOf
Source§fn from(value: AnyOfBuilder) -> Self
fn from(value: AnyOfBuilder) -> Self
Converts to this type from the input type.
Source§impl From<AnyOfBuilder> for ArrayItems
impl From<AnyOfBuilder> for ArrayItems
Source§fn from(value: AnyOfBuilder) -> Self
fn from(value: AnyOfBuilder) -> Self
Converts to this type from the input type.
Source§impl From<AnyOfBuilder> for RefOr<Schema>
impl From<AnyOfBuilder> for RefOr<Schema>
Source§fn from(any_of: AnyOfBuilder) -> Self
fn from(any_of: AnyOfBuilder) -> Self
Converts to this type from the input type.
Source§impl From<AnyOfBuilder> for Schema
impl From<AnyOfBuilder> for Schema
Source§fn from(builder: AnyOfBuilder) -> Self
fn from(builder: AnyOfBuilder) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AnyOfBuilder
impl RefUnwindSafe for AnyOfBuilder
impl Send for AnyOfBuilder
impl Sync for AnyOfBuilder
impl Unpin for AnyOfBuilder
impl UnwindSafe for AnyOfBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more