Skip to main content

List

Type Alias List 

Source
pub type List<'a> = Vec<Value<'a>>;
Expand description

An alias for a list of Values

Aliased Type§

pub struct List<'a> { /* private fields */ }

Trait Implementations§

Source§

impl<'a> TryFromValue<'a> for &'a List<'a>

Source§

fn try_from(value: &'a Value<'_>) -> Option<Self>