Trait TaintExt

Source
pub trait TaintExt {
    // Required methods
    fn no_schedule(key: impl ToString) -> Self;
    fn prefer_no_schedule(key: impl ToString) -> Self;
    fn no_execute(key: impl ToString) -> Self;
    fn value(self, value: impl ToString) -> Self;
}

Required Methods§

Source

fn no_schedule(key: impl ToString) -> Self

Source

fn prefer_no_schedule(key: impl ToString) -> Self

Source

fn no_execute(key: impl ToString) -> Self

Source

fn value(self, value: impl ToString) -> 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.

Implementors§