Struct valico::json_schema::scope::Scope

source ·
pub struct Scope { /* private fields */ }

Implementations§

source§

impl Scope

source

pub fn new() -> Scope

source

pub fn without_formats() -> Scope

source

pub fn with_formats<F>(build_formats: F) -> Scope
where F: FnOnce(&mut FormatBuilders),

source

pub fn compile( &mut self, def: Value, ban_unknown: bool, ) -> Result<Url, SchemaError>

source

pub fn compile_with_id( &mut self, id: &Url, def: Value, ban_unknown: bool, ) -> Result<(), SchemaError>

source

pub fn compile_and_return<'a>( &'a mut self, def: Value, ban_unknown: bool, ) -> Result<ScopedSchema<'a>, SchemaError>

source

pub fn compile_and_return_with_id<'a>( &'a mut self, id: &Url, def: Value, ban_unknown: bool, ) -> Result<ScopedSchema<'a>, SchemaError>

source

pub fn add_keyword<T>(&mut self, keys: Vec<&'static str>, keyword: T)
where T: Keyword + 'static,

source

pub fn resolve<'a>(&'a self, id: &Url) -> Option<ScopedSchema<'a>>

Trait Implementations§

source§

impl Debug for Scope

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Scope

§

impl !RefUnwindSafe for Scope

§

impl !Send for Scope

§

impl !Sync for Scope

§

impl Unpin for Scope

§

impl !UnwindSafe for Scope

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> GetTypeId for T
where T: Any,

source§

fn typeid(&self) -> TypeId

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.