pub trait FromPolarList: Sealed {
    fn from_polar_list(values: &[PolarValue]) -> Result<Self>
    where
        Self: Sized
; }

Required Methods

Implementations on Foreign Types

Implementors