Struct iri_string::template::UriTemplateString
source · pub struct UriTemplateString { /* private fields */ }
Expand description
Implementations§
source§impl UriTemplateString
impl UriTemplateString
sourcepub unsafe fn new_unchecked(s: String) -> Self
pub unsafe fn new_unchecked(s: String) -> Self
Creates a new string without validation.
This does not validate the given string, so it is caller’s responsibility to ensure the given string is valid.
§Safety
The given string must be syntactically valid as Self
type.
If not, any use of the returned value or the call of this
function itself may result in undefined behavior.
sourcepub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Shrinks the capacity of the inner buffer to match its length.
sourcepub fn as_slice(&self) -> &UriTemplateStr
pub fn as_slice(&self) -> &UriTemplateStr
Returns the borrowed IRI string slice.
This is equivalent to &*self
.
sourcepub fn append(&mut self, other: &UriTemplateStr)
pub fn append(&mut self, other: &UriTemplateStr)
Appends the template string.
Methods from Deref<Target = UriTemplateStr>§
sourcepub fn as_str(&self) -> &str
pub fn as_str(&self) -> &str
Returns the template as a plain &str
.
§Examples
use iri_string::template::UriTemplateStr;
let template = UriTemplateStr::new("/users/{username}")?;
assert_eq!(template.as_str(), "/users/{username}");
sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Returns the template string length.
§Examples
use iri_string::template::UriTemplateStr;
let template = UriTemplateStr::new("/users/{username}")?;
assert_eq!(template.len(), "/users/{username}".len());
sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Returns whether the string is empty.
§Examples
use iri_string::template::UriTemplateStr;
let template = UriTemplateStr::new("/users/{username}")?;
assert!(!template.is_empty());
let empty = UriTemplateStr::new("")?;
assert!(empty.is_empty());
sourcepub fn expand<'a, S: Spec, C: Context>(
&'a self,
context: &'a C
) -> Result<Expanded<'a, S, C>, Error>
pub fn expand<'a, S: Spec, C: Context>( &'a self, context: &'a C ) -> Result<Expanded<'a, S, C>, Error>
Expands the template with the given context.
§Examples
use iri_string::spec::UriSpec;
use iri_string::template::UriTemplateStr;
use iri_string::template::simple_context::SimpleContext;
let mut context = SimpleContext::new();
context.insert("username", "foo");
let template = UriTemplateStr::new("/users/{username}")?;
let expanded = template.expand::<UriSpec, _>(&context)?;
assert_eq!(
expanded.to_string(),
"/users/foo"
);
You can control allowed characters in the output by changing spec type.
use iri_string::spec::{IriSpec, UriSpec};
use iri_string::template::UriTemplateStr;
use iri_string::template::simple_context::SimpleContext;
let mut context = SimpleContext::new();
context.insert("alpha", "\u{03B1}");
let template = UriTemplateStr::new("{?alpha}")?;
assert_eq!(
template.expand::<UriSpec, _>(&context)?.to_string(),
"?alpha=%CE%B1",
"a URI cannot contain Unicode alpha (U+03B1), so it should be escaped"
);
assert_eq!(
template.expand::<IriSpec, _>(&context)?.to_string(),
"?alpha=\u{03B1}",
"an IRI can contain Unicode alpha (U+03B1), so it written as is"
);
Trait Implementations§
source§impl AsRef<UriTemplateStr> for UriTemplateString
impl AsRef<UriTemplateStr> for UriTemplateString
source§fn as_ref(&self) -> &UriTemplateStr
fn as_ref(&self) -> &UriTemplateStr
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<str> for UriTemplateString
impl AsRef<str> for UriTemplateString
source§impl Borrow<UriTemplateStr> for UriTemplateString
impl Borrow<UriTemplateStr> for UriTemplateString
source§fn borrow(&self) -> &UriTemplateStr
fn borrow(&self) -> &UriTemplateStr
Immutably borrows from an owned value. Read more
source§impl Borrow<str> for UriTemplateString
impl Borrow<str> for UriTemplateString
source§impl Clone for UriTemplateString
impl Clone for UriTemplateString
source§fn clone(&self) -> UriTemplateString
fn clone(&self) -> UriTemplateString
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UriTemplateString
impl Debug for UriTemplateString
source§impl Default for UriTemplateString
impl Default for UriTemplateString
source§fn default() -> UriTemplateString
fn default() -> UriTemplateString
Returns the “default value” for a type. Read more
source§impl Deref for UriTemplateString
impl Deref for UriTemplateString
§type Target = UriTemplateStr
type Target = UriTemplateStr
The resulting type after dereferencing.
source§fn deref(&self) -> &UriTemplateStr
fn deref(&self) -> &UriTemplateStr
Dereferences the value.
source§impl<'de> Deserialize<'de> for UriTemplateString
Available on crate feature serde
only.
impl<'de> Deserialize<'de> for UriTemplateString
Available on crate feature
serde
only.source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for UriTemplateString
impl Display for UriTemplateString
source§impl From<&UriTemplateStr> for UriTemplateString
impl From<&UriTemplateStr> for UriTemplateString
source§fn from(s: &UriTemplateStr) -> Self
fn from(s: &UriTemplateStr) -> Self
Converts to this type from the input type.
source§impl From<UriTemplateString> for Box<UriTemplateStr>
impl From<UriTemplateString> for Box<UriTemplateStr>
source§fn from(s: UriTemplateString) -> Box<UriTemplateStr>
fn from(s: UriTemplateString) -> Box<UriTemplateStr>
Converts to this type from the input type.
source§impl<'a> From<UriTemplateString> for Cow<'a, UriTemplateStr>
impl<'a> From<UriTemplateString> for Cow<'a, UriTemplateStr>
source§fn from(s: UriTemplateString) -> Cow<'a, UriTemplateStr>
fn from(s: UriTemplateString) -> Cow<'a, UriTemplateStr>
Converts to this type from the input type.
source§impl From<UriTemplateString> for String
impl From<UriTemplateString> for String
source§fn from(s: UriTemplateString) -> Self
fn from(s: UriTemplateString) -> Self
Converts to this type from the input type.
source§impl FromStr for UriTemplateString
impl FromStr for UriTemplateString
source§impl Hash for UriTemplateString
impl Hash for UriTemplateString
source§impl Ord for UriTemplateString
impl Ord for UriTemplateString
source§fn cmp(&self, other: &UriTemplateString) -> Ordering
fn cmp(&self, other: &UriTemplateString) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<&str> for UriTemplateString
impl PartialEq<&str> for UriTemplateString
source§impl PartialEq<Cow<'_, str>> for UriTemplateString
impl PartialEq<Cow<'_, str>> for UriTemplateString
source§impl PartialEq<String> for UriTemplateString
impl PartialEq<String> for UriTemplateString
source§impl PartialEq<UriTemplateString> for &str
impl PartialEq<UriTemplateString> for &str
source§fn eq(&self, o: &UriTemplateString) -> bool
fn eq(&self, o: &UriTemplateString) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<UriTemplateString> for Cow<'_, str>
impl PartialEq<UriTemplateString> for Cow<'_, str>
source§fn eq(&self, o: &UriTemplateString) -> bool
fn eq(&self, o: &UriTemplateString) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<UriTemplateString> for String
impl PartialEq<UriTemplateString> for String
source§fn eq(&self, o: &UriTemplateString) -> bool
fn eq(&self, o: &UriTemplateString) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<UriTemplateString> for str
impl PartialEq<UriTemplateString> for str
source§fn eq(&self, o: &UriTemplateString) -> bool
fn eq(&self, o: &UriTemplateString) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<str> for UriTemplateString
impl PartialEq<str> for UriTemplateString
source§impl PartialEq for UriTemplateString
impl PartialEq for UriTemplateString
source§fn eq(&self, other: &UriTemplateString) -> bool
fn eq(&self, other: &UriTemplateString) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<&str> for UriTemplateString
impl PartialOrd<&str> for UriTemplateString
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<Cow<'_, str>> for UriTemplateString
impl PartialOrd<Cow<'_, str>> for UriTemplateString
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<String> for UriTemplateString
impl PartialOrd<String> for UriTemplateString
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<UriTemplateString> for &str
impl PartialOrd<UriTemplateString> for &str
source§fn partial_cmp(&self, o: &UriTemplateString) -> Option<Ordering>
fn partial_cmp(&self, o: &UriTemplateString) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<UriTemplateString> for Cow<'_, str>
impl PartialOrd<UriTemplateString> for Cow<'_, str>
source§fn partial_cmp(&self, o: &UriTemplateString) -> Option<Ordering>
fn partial_cmp(&self, o: &UriTemplateString) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<UriTemplateString> for String
impl PartialOrd<UriTemplateString> for String
source§fn partial_cmp(&self, o: &UriTemplateString) -> Option<Ordering>
fn partial_cmp(&self, o: &UriTemplateString) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<UriTemplateString> for str
impl PartialOrd<UriTemplateString> for str
source§fn partial_cmp(&self, o: &UriTemplateString) -> Option<Ordering>
fn partial_cmp(&self, o: &UriTemplateString) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<str> for UriTemplateString
impl PartialOrd<str> for UriTemplateString
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for UriTemplateString
impl PartialOrd for UriTemplateString
source§fn partial_cmp(&self, other: &UriTemplateString) -> Option<Ordering>
fn partial_cmp(&self, other: &UriTemplateString) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for UriTemplateString
impl Serialize for UriTemplateString
source§impl TryFrom<&[u8]> for UriTemplateString
impl TryFrom<&[u8]> for UriTemplateString
source§impl TryFrom<&str> for UriTemplateString
impl TryFrom<&str> for UriTemplateString
source§impl TryFrom<String> for UriTemplateString
impl TryFrom<String> for UriTemplateString
impl Eq for UriTemplateString
impl StructuralPartialEq for UriTemplateString
Auto Trait Implementations§
impl Freeze for UriTemplateString
impl RefUnwindSafe for UriTemplateString
impl Send for UriTemplateString
impl Sync for UriTemplateString
impl Unpin for UriTemplateString
impl UnwindSafe for UriTemplateString
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
source§fn try_to_string(&self) -> Result<String, TryReserveError>
Available on crate feature alloc
only.
fn try_to_string(&self) -> Result<String, TryReserveError>
alloc
only.ToString::to_string
, but without panic on OOM.