pub struct OutputIterator<'a> { /* private fields */ }
Expand description
Iterator over a mutable set of output ports
Implementations§
Source§impl<'a> OutputIterator<'a>
impl<'a> OutputIterator<'a>
Sourcepub fn new(outputs: Vec<&'a mut dyn Port>) -> Self
pub fn new(outputs: Vec<&'a mut dyn Port>) -> Self
Create a new OutputIterator
Trait Implementations§
Source§impl<'a> Debug for OutputIterator<'a>
impl<'a> Debug for OutputIterator<'a>
Source§impl<'a> IntoIterator for OutputIterator<'a>
impl<'a> IntoIterator for OutputIterator<'a>
Source§type IntoIter = IntoIter<<OutputIterator<'a> as IntoIterator>::Item>
type IntoIter = IntoIter<<OutputIterator<'a> as IntoIterator>::Item>
Which kind of iterator are we turning this into?
Auto Trait Implementations§
impl<'a> Freeze for OutputIterator<'a>
impl<'a> !RefUnwindSafe for OutputIterator<'a>
impl<'a> Send for OutputIterator<'a>
impl<'a> !Sync for OutputIterator<'a>
impl<'a> Unpin for OutputIterator<'a>
impl<'a> !UnwindSafe for OutputIterator<'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