Trait hexavalent::list::List

source ·
pub trait List: ListImpl + 'static
where Self::Elem: FromListElem,
{ type Elem: 'static; }
Expand description

A list that can be retrieved from HexChat.

Used with PluginHandle::get_list.

This trait is sealed and cannot be implemented outside of hexavalent.

Required Associated Types§

source

type Elem: 'static

The type of elements of the list.

Object Safety§

This trait is not object safe.

Implementors§