pub trait PropertyExt {
fn into_scalar<T>(self) -> Result<T, PlyError>
where
T: NumCast;
fn into_list<T, I>(self) -> Result<I, PlyError>
where
T: NumCast,
I: FromIterator<T>;
}
pub trait PropertyExt {
fn into_scalar<T>(self) -> Result<T, PlyError>
where
T: NumCast;
fn into_list<T, I>(self) -> Result<I, PlyError>
where
T: NumCast,
I: FromIterator<T>;
}