iri_string::template::simple_context

Struct SimpleContext

source
pub struct SimpleContext { /* private fields */ }
Available on crate feature alloc only.
Expand description

Simple template expansion context.

Implementations§

source§

impl SimpleContext

source

pub fn new() -> Self

Creates a new empty context.

§Examples
use iri_string::spec::UriSpec;
use iri_string::template::UriTemplateStr;
use iri_string::template::simple_context::SimpleContext;

let empty_ctx = SimpleContext::new();
let template = UriTemplateStr::new("{no_such_variable}")?;
let expanded = template.expand::<UriSpec, _>(&empty_ctx)?;

assert_eq!(
    expanded.to_string(),
    ""
);
source

pub fn insert<K, V>(&mut self, key: K, value: V) -> Option<Value>
where K: Into<String>, V: Into<Value>,

Inserts a variable.

Passing Value::Undefined removes the value from the context.

The entry will be inserted or removed even if the key is invalid as a variable name. Such entries will be simply ignored on expansion.

§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"
);

Passing Value::Undefined removes the value from the context.

# [cfg(feature = "alloc")] {
use iri_string::spec::UriSpec;
use iri_string::template::UriTemplateStr;
use iri_string::template::simple_context::{SimpleContext, Value};

let mut context = SimpleContext::new();
context.insert("username", "foo");
context.insert("username", Value::Undefined);

let template = UriTemplateStr::new("/users/{username}")?;
let expanded = template.expand::<UriSpec, _>(&context)?;

assert_eq!(
    expanded.to_string(),
    "/users/"
);
source

pub fn clear(&mut self)

Removes all entries in the context.

§Examples
use iri_string::spec::UriSpec;
use iri_string::template::UriTemplateStr;
use iri_string::template::simple_context::SimpleContext;

let template = UriTemplateStr::new("{foo,bar}")?;
let mut context = SimpleContext::new();

context.insert("foo", "FOO");
context.insert("bar", "BAR");
assert_eq!(
    template.expand::<UriSpec, _>(&context)?.to_string(),
    "FOO,BAR"
);

context.clear();
assert_eq!(
    template.expand::<UriSpec, _>(&context)?.to_string(),
    ""
);
source

pub fn get(&self, key: VarName<'_>) -> Option<&Value>

Returns a reference to the value for the key.

Trait Implementations§

source§

impl Clone for SimpleContext

source§

fn clone(&self) -> SimpleContext

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Context for SimpleContext

source§

fn visit<V: Visitor>(&self, visitor: V) -> V::Result

Visits a variable. Read more
source§

impl Debug for SimpleContext

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for SimpleContext

source§

fn default() -> SimpleContext

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<C> DynamicContext for C
where C: Context,

source§

fn visit_dynamic<V>(&mut self, visitor: V) -> <V as Visitor>::Result
where V: Visitor,

Visits a variable. Read more
source§

fn on_expansion_start(&mut self)

A callback that is called before the expansion of a URI template.
source§

fn on_expansion_end(&mut self)

A callback that is called after the expansion of a URI template.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.