Trait Backing

Source
pub trait Backing:
    AsRef<str>
    + ToOwned
    + PartialEq { }
Expand description

A Source for parsing (XX rename it to Source?), without the location info.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Backing for str

Source§

impl Backing for Rc<str>

Source§

impl Backing for String

Source§

impl Backing for Arc<str>

Source§

impl<'t> Backing for &'t str

Source§

impl<'t> Backing for &'t String

Implementors§