bridge_types

Trait BridgedType

Source
pub trait BridgedType { }
Expand description

A slosh Value that can potentially be represented as a rust value. Marker traits

Implementations on Foreign Types§

Source§

impl<T> BridgedType for Option<T>
where T: BridgedType,

An Option value that contains a BridgedType can be represented as a rust value.

Source§

impl<T> BridgedType for Vec<T>
where T: BridgedType,

A Vec that contains a BridgedType can be represented as a rust value.

Source§

impl<T, U> BridgedType for Result<T, U>
where T: BridgedType,

A Result value that contains a BridgedType can be represented as a rust value.

Implementors§