Trait rgb::schema::SchemaVerify[][src]

pub trait SchemaVerify {
    fn schema_verify(&self, root: &Self) -> Status;
}
Expand description

Trait used for internal schema validation against some root schema

Required methods

fn schema_verify(&self, root: &Self) -> Status[src]

Loading content...

Implementors

impl SchemaVerify for Schema[src]

fn schema_verify(&self, root: &Schema) -> Status[src]

impl<T> SchemaVerify for T where
    T: NodeSchema
[src]

fn schema_verify(&self, root: &Self) -> Status[src]

Loading content...