Skip to main content

IntoOutput

Trait IntoOutput 

Source
pub trait IntoOutput: Sealed { }
Expand description

Trait used to coerce values into outputs.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl IntoOutput for &[u8]

Source§

impl IntoOutput for &str

Source§

impl IntoOutput for ()

Source§

impl IntoOutput for Option<Value>

Source§

impl IntoOutput for Ordering

Source§

impl IntoOutput for Result<Value, Value>

Source§

impl IntoOutput for bool

Source§

impl IntoOutput for char

Source§

impl IntoOutput for f64

Source§

impl IntoOutput for i64

Source§

impl IntoOutput for u64

Source§

impl<T, E> IntoOutput for Result<T, E>
where T: IntoOutput, E: From<T::Error>,

Implementors§