pub struct TypeDefinition { /* private fields */ }
Expand description

Represents a top level ISL type definition

Implementations§

source§

impl TypeDefinition

source

pub fn id(&self) -> TypeId

source

pub fn validate<I: Into<IonSchemaElement>>(&self, value: I) -> ValidationResult

Provides the validation for the given value based on this schema type

use ion_rs::element::Element;
use ion_schema::IonSchemaElement;
use ion_schema::authority::{FileSystemDocumentAuthority, DocumentAuthority};
use ion_schema::system::SchemaSystem;
use ion_schema::result::IonSchemaResult;
use std::path::Path;

fn main() -> IonSchemaResult<()> {
    // create an IonSchemaElement from an Element
    use ion_schema::authority::MapDocumentAuthority;
    let owned_element: Element = 4.into();
    let document: Vec<Element> = vec![4.into(), "hello".to_string().into(), true.into()];

    let map_authority = [
        (
           "sample.isl",
            r#"
                type::{
                    name: my_int,
                    type: int,
                }
            "#
        )   
    ];

    // create a vector of authorities and construct schema system
    // this example uses above mentioned map as the authority
    let authorities: Vec<Box<dyn DocumentAuthority>> = vec![Box::new(
            MapDocumentAuthority::new(map_authority),
        )];
    let mut schema_system = SchemaSystem::new(authorities);

    // use this schema_system to load a schema as following
    let schema = schema_system.load_schema("sample.isl")?;

    // unwrap() here because we know that the `my_int` type exists in sample.isl
    let type_ref = schema.get_type("my_int").unwrap();

    assert!(type_ref.validate(&owned_element).is_ok()); // 4 is valid for `my_int`
    assert!(type_ref.validate(&document).is_err()); // document type is invalid for `my_int` type
    Ok(())
}

Trait Implementations§

source§

impl Clone for TypeDefinition

source§

fn clone(&self) -> TypeDefinition

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TypeDefinition

source§

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

Formats the value using the given formatter. Read more

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.