pub struct ValidatorSchemaFragment<N, A>(/* private fields */);
Expand description

A ValidatorSchemaFragment consists of any number (even 0) of ValidatorNamespaceDefs.

Implementations§

source§

impl<N, A> ValidatorSchemaFragment<N, A>

source

pub fn from_namespaces( namespaces: impl IntoIterator<Item = ValidatorNamespaceDef<N, A>>, ) -> Self

source

pub fn namespaces(&self) -> impl Iterator<Item = Option<&InternalName>>

Get the fully-qualified InternalNames for the namespaces in this fragment. None indicates the empty namespace.

source§

impl ValidatorSchemaFragment<ConditionalName, ConditionalName>

source

pub fn from_schema_fragment( fragment: Fragment<RawName>, action_behavior: ActionBehavior, extensions: &Extensions<'_>, ) -> Result<Self>

source

pub fn fully_qualify_type_references( self, all_defs: &AllDefs, ) -> Result<ValidatorSchemaFragment<InternalName, EntityType>>

Convert this ValidatorSchemaFragment<ConditionalName> into a ValidatorSchemaFragment<Name> by fully-qualifying all typenames that appear anywhere in any definitions.

all_defs needs to contain the full set of all fully-qualified typenames and actions that are defined in the schema (in all schema fragments).

Trait Implementations§

source§

impl<N: Debug, A: Debug> Debug for ValidatorSchemaFragment<N, A>

source§

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

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

impl TryInto<ValidatorSchemaFragment<ConditionalName, ConditionalName>> for Fragment<RawName>

source§

type Error = SchemaError

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

fn try_into( self, ) -> Result<ValidatorSchemaFragment<ConditionalName, ConditionalName>>

Performs the conversion.

Auto Trait Implementations§

§

impl<N, A> Freeze for ValidatorSchemaFragment<N, A>

§

impl<N, A> RefUnwindSafe for ValidatorSchemaFragment<N, A>

§

impl<N, A> Send for ValidatorSchemaFragment<N, A>
where N: Send, A: Send,

§

impl<N, A> Sync for ValidatorSchemaFragment<N, A>
where N: Sync, A: Sync,

§

impl<N, A> Unpin for ValidatorSchemaFragment<N, A>
where N: Unpin, A: Unpin,

§

impl<N, A> UnwindSafe for ValidatorSchemaFragment<N, A>

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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. 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.