pub struct InnerList {
pub items: Vec<Item>,
pub params: Parameters,
}
Expand description
An array of Item
s with associated Parameters
.
Fields§
§items: Vec<Item>
The inner list’s items, which can be empty.
params: Parameters
The inner list’s parameters, which can be empty.
Implementations§
Trait Implementations§
Source§impl InnerListVisitor<'_> for &mut InnerList
impl InnerListVisitor<'_> for &mut InnerList
Source§impl<'a> ItemVisitor<'a> for &mut InnerList
impl<'a> ItemVisitor<'a> for &mut InnerList
Source§type Error = Infallible
type Error = Infallible
The error type that can be returned if some error occurs during parsing.
Source§fn bare_item<'pv>(
self,
bare_item: BareItemFromInput<'a>,
) -> Result<impl ParameterVisitor<'pv>, Self::Error>
fn bare_item<'pv>( self, bare_item: BareItemFromInput<'a>, ) -> Result<impl ParameterVisitor<'pv>, Self::Error>
Called after a bare item has been parsed. Read more
impl StructuralPartialEq for InnerList
Auto Trait Implementations§
impl Freeze for InnerList
impl RefUnwindSafe for InnerList
impl Send for InnerList
impl Sync for InnerList
impl Unpin for InnerList
impl UnwindSafe for InnerList
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more