[][src]Struct jsl::schema::RootData

pub struct RootData { /* fields omitted */ }

Data relevant only for root schemas.

Methods

impl RootData[src]

pub fn is_anonymous(&self) -> bool[src]

Is this schema anonymous?

A schema is anonymous when it lacks an id keyword. This function is just convenience for id().is_none().

pub fn id(&self) -> &Option<Url>[src]

Get the id of the schema.

pub fn id_mut(&mut self) -> &mut Option<Url>[src]

Same as id, but takes a mutable reference.

pub fn into_id(self) -> Option<Url>[src]

Same as id, but moves ownership.

pub fn definitions(&self) -> &HashMap<String, Schema>[src]

Get the definitions of the schema.

pub fn definitions_mut(&mut self) -> &mut HashMap<String, Schema>[src]

Same as definitions, but takes a mutable reference.

pub fn into_definitions(self) -> HashMap<String, Schema>[src]

Same as definitions, but moves ownership.

Trait Implementations

impl Clone for RootData[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<RootData> for RootData[src]

impl Debug for RootData[src]

Auto Trait Implementations

impl Send for RootData

impl Sync for RootData

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]