Skip to main content

HeaderBuilder

Struct HeaderBuilder 

Source
pub struct HeaderBuilder { /* private fields */ }
Expand description

Builder for Header with chainable configuration methods to create a new Header.

Implementations§

Source§

impl HeaderBuilder

Source

pub fn new() -> HeaderBuilder

Constructs a new HeaderBuilder.

Source

pub fn build(self) -> Header

Constructs a new Header taking all fields values from this object.

Source§

impl HeaderBuilder

Source

pub fn schema<I: Into<RefOr<Schema>>>(self, component: I) -> Self

Add schema of header.

Source

pub fn description<S: Into<String>>(self, description: Option<S>) -> Self

Add additional description for header.

Source

pub fn deprecated(self, deprecated: Option<Deprecated>) -> Self

Add or change Header deprecated status.

Source

pub fn style(self, style: Option<ParameterStyle>) -> Self

Add or change serialization style of Header.

Source

pub fn explode(self, explode: Option<bool>) -> Self

Define whether Headers are exploded or not.

Source

pub fn example(self, example: Option<Value>) -> Self

Add or change example of Header’s potential value.

Source

pub fn examples_from_iter<E: IntoIterator<Item = (N, V)>, N: Into<String>, V: Into<RefOr<Example>>>( self, examples: E, ) -> Self

Add examples from iterator.

Source

pub fn content_from_iter<E: IntoIterator<Item = (N, V)>, N: Into<String>, V: Into<Content>>( self, content: E, ) -> Self

Add media type content representation to Header.

Source

pub fn extensions(self, extensions: Option<Extensions>) -> Self

Add openapi extensions (x-something) to the Header.

Trait Implementations§

Source§

impl Default for HeaderBuilder

Source§

fn default() -> Self

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

impl From<Header> for HeaderBuilder

Source§

fn from(value: Header) -> Self

Converts to this type from the input type.
Source§

impl From<HeaderBuilder> for Header

Source§

fn from(value: HeaderBuilder) -> Self

Converts to this type from the input type.

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> 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, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

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.