pub trait BridgedType { }
Expand description
A slosh Value
that can potentially be represented as a rust value.
Marker traits
Implementations on Foreign Types§
impl<T> BridgedType for Option<T>where
T: BridgedType,
An Option
value that contains a BridgedType
can be represented as a rust value.
impl<T> BridgedType for Vec<T>where
T: BridgedType,
A Vec
that contains a BridgedType
can be represented as a rust value.
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.