[][src]Module weechat::infolist

Infolists can be used to share information between scripts and plugins.

The list of available infolists can be found in the Weechat plugin API reference.

Example

Examples

let infolist = weechat.get_infolist("hook", Some("infolist")).unwrap();

for item in infolist {
    for variable in &item {
        Weechat::print(&format!("{:?}", variable));
    }
}

Structs

Infolist

An infolist is a list of items.

InfolistItem

An item of the infolist.

Iter

An iterator over the entries of a InfolistItem.

Enums

InfolistType

The type of an infolist variable.

InfolistVariable

A variable that was fetched out of the infolist item.