pub struct TypeBuilder<F: Form = MetaForm, S = PathNotAssigned> { /* private fields */ }
Expand description

Builds a Type

Implementations§

source§

impl<F: Form> TypeBuilder<F, PathNotAssigned>

source

pub fn path(self, path: Path<F>) -> TypeBuilder<F, PathAssigned>

Set the Path for the type

source§

impl<F: Form> TypeBuilder<F, PathAssigned>

source

pub fn variant(self, builder: Variants<F>) -> Type<F>

Construct a “variant” type i.e an enum

source

pub fn composite<T>(self, fields: FieldsBuilder<F, T>) -> Type<F>

Construct a “composite” type i.e. a struct

source§

impl<F: Form, S> TypeBuilder<F, S>

source

pub fn type_params<I>(self, type_params: I) -> Self
where I: IntoIterator<Item = TypeParameter<F>>,

Set the type parameters if it’s a generic type

source§

impl<S> TypeBuilder<MetaForm, S>

source

pub fn docs(self, _docs: &'static [&'static str]) -> Self

Doc capture is not enabled via the “docs” feature so this is a no-op.

source

pub fn docs_always(self, docs: &[&'static str]) -> Self

Set the type documentation, always captured even if the “docs” feature is not enabled.

Trait Implementations§

source§

impl<F: Form, S> Default for TypeBuilder<F, S>

source§

fn default() -> Self

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

Auto Trait Implementations§

§

impl<F, S> RefUnwindSafe for TypeBuilder<F, S>
where <F as Form>::String: RefUnwindSafe, <F as Form>::Type: RefUnwindSafe,

§

impl<F, S> Send for TypeBuilder<F, S>
where <F as Form>::String: Send, <F as Form>::Type: Send,

§

impl<F, S> Sync for TypeBuilder<F, S>
where <F as Form>::String: Sync, <F as Form>::Type: Sync,

§

impl<F, S> Unpin for TypeBuilder<F, S>
where <F as Form>::String: Unpin, <F as Form>::Type: Unpin,

§

impl<F, S> UnwindSafe for TypeBuilder<F, S>
where <F as Form>::String: UnwindSafe, <F as Form>::Type: UnwindSafe,

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>,

§

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>,

§

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.
source§

impl<T> JsonSchemaMaybe for T