Trait Prepare

Source
pub trait Prepare {
    // Required method
    fn prepare(self, prefix: impl Into<String>) -> Self;
}

Required Methods§

Source

fn prepare(self, prefix: impl Into<String>) -> Self

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 Prepare for Value

Source§

fn prepare(self, _: impl Into<String>) -> Self

Source§

impl Prepare for bool

Source§

fn prepare(self, _: impl Into<String>) -> Self

Source§

impl Prepare for i64

Source§

fn prepare(self, _: impl Into<String>) -> Self

Source§

impl Prepare for String

Source§

fn prepare(self, _: impl Into<String>) -> Self

Source§

impl<T> Prepare for HashMap<String, T>

Source§

fn prepare(self, _: impl Into<String>) -> Self

Source§

impl<T> Prepare for HashSet<T>

Source§

fn prepare(self, _: impl Into<String>) -> Self

Source§

impl<T: Prepare + Clone> Prepare for Rc<T>

Source§

fn prepare(self, prefix: impl Into<String>) -> Self

Source§

impl<T: Prepare> Prepare for Option<T>

Source§

fn prepare(self, prefix: impl Into<String>) -> Self

Source§

impl<T: Prepare> Prepare for Vec<T>

Source§

fn prepare(self, prefix: impl Into<String>) -> Self

Implementors§

Source§

impl<T> Prepare for Computed<T>

Source§

impl<T: Prepare + Clone> Prepare for tf_bindgen::value::Value<T>

Source§

impl<T: Prepare + Clone> Prepare for Cell<T>