pub struct TableIter<'a> {
pub headings: Option<Box<dyn Iterator<Item = Box<dyn Iterator<Item = &'a Container> + 'a>> + 'a>>,
pub rows: Box<dyn Iterator<Item = Box<dyn Iterator<Item = &'a Container> + 'a>> + 'a>,
}
Fields§
§headings: Option<Box<dyn Iterator<Item = Box<dyn Iterator<Item = &'a Container> + 'a>> + 'a>>
§rows: Box<dyn Iterator<Item = Box<dyn Iterator<Item = &'a Container> + 'a>> + 'a>
Auto Trait Implementations§
impl<'a> Freeze for TableIter<'a>
impl<'a> !RefUnwindSafe for TableIter<'a>
impl<'a> !Send for TableIter<'a>
impl<'a> !Sync for TableIter<'a>
impl<'a> Unpin for TableIter<'a>
impl<'a> !UnwindSafe for TableIter<'a>
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