1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::{Datatype, XsdDatatype};

pub type AnyUri = iref::Uri;

impl XsdDatatype for AnyUri {
	fn type_(&self) -> Datatype {
		Datatype::AnyUri
	}
}

pub type AnyUriBuf = iref::UriBuf;

impl XsdDatatype for AnyUriBuf {
	fn type_(&self) -> Datatype {
		Datatype::AnyUri
	}
}