StrList

Trait StrList 

Source
pub trait StrList
where Self: Sized,
{ type Error; // Required methods fn from_iter<'a>( iter: impl Iterator<Item = &'a str>, ) -> Result<Self, Self::Error>; fn from_value_mismatch(iter: impl Iterator<Item = ValueType>) -> Self::Error; fn not_sequence(type_enum: ValueType) -> Self::Error; }

Required Associated Types§

Required Methods§

Source

fn from_iter<'a>( iter: impl Iterator<Item = &'a str>, ) -> Result<Self, Self::Error>

Source

fn from_value_mismatch(iter: impl Iterator<Item = ValueType>) -> Self::Error

Source

fn not_sequence(type_enum: ValueType) -> Self::Error

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§