Trait toml::value::Index

source ·
pub trait Index: Sealed { }
Expand description

Types that can be used to index a toml::Value

Currently this is implemented for usize to index arrays and str to index tables.

This trait is sealed and not intended for implementation outside of the toml crate.

Implementations on Foreign Types§

source§

impl Index for str

source§

impl Index for usize

source§

impl Index for String

source§

impl<'s, T> Index for &'s T
where T: Index + ?Sized,

Implementors§