1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#[cfg(feature = "alloc")]
use crate::types::{
RiAbsoluteString, RiFragmentString, RiReferenceString, RiRelativeString, RiString,
};
use crate::{
spec::UriSpec,
types::{RiAbsoluteStr, RiFragmentStr, RiReferenceStr, RiRelativeStr, RiStr},
};
pub type UriAbsoluteStr = RiAbsoluteStr<UriSpec>;
#[cfg(feature = "alloc")]
pub type UriAbsoluteString = RiAbsoluteString<UriSpec>;
pub type UriFragmentStr = RiFragmentStr<UriSpec>;
#[cfg(feature = "alloc")]
pub type UriFragmentString = RiFragmentString<UriSpec>;
pub type UriStr = RiStr<UriSpec>;
#[cfg(feature = "alloc")]
pub type UriString = RiString<UriSpec>;
pub type UriReferenceStr = RiReferenceStr<UriSpec>;
#[cfg(feature = "alloc")]
pub type UriReferenceString = RiReferenceString<UriSpec>;
pub type UriRelativeStr = RiRelativeStr<UriSpec>;
#[cfg(feature = "alloc")]
pub type UriRelativeString = RiRelativeString<UriSpec>;