Trait IntoPakValue

Source
pub trait IntoPakValue {
    // Required method
    fn into_pak_value(self) -> PakValue;
}

Required Methods§

Implementations on Foreign Types§

Source§

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

Implementors§

Source§

impl<T> IntoPakValue for T
where T: Into<PakValue>,