pub struct ReadExtendedControllerIndexListReply(/* private fields */);
Expand description
Reply for ReadExtendedControllerIndexList
Implementations§
Source§impl ReadExtendedControllerIndexListReply
impl ReadExtendedControllerIndexListReply
pub fn iter( &self, ) -> impl Iterator<Item = &(ControllerIndex, ControllerType, ControllerBus)>
pub fn iter_mut( &mut self, ) -> impl Iterator<Item = &mut (ControllerIndex, ControllerType, ControllerBus)>
Trait Implementations§
Source§impl Extend<(ControllerIndex, ControllerType, ControllerBus)> for ReadExtendedControllerIndexListReply
impl Extend<(ControllerIndex, ControllerType, ControllerBus)> for ReadExtendedControllerIndexListReply
Source§fn extend<T789979AD04B840B9BCA2350BD2215CBC>(
&mut self,
iter: T789979AD04B840B9BCA2350BD2215CBC,
)where
T789979AD04B840B9BCA2350BD2215CBC: IntoIterator<Item = (ControllerIndex, ControllerType, ControllerBus)>,
fn extend<T789979AD04B840B9BCA2350BD2215CBC>(
&mut self,
iter: T789979AD04B840B9BCA2350BD2215CBC,
)where
T789979AD04B840B9BCA2350BD2215CBC: IntoIterator<Item = (ControllerIndex, ControllerType, ControllerBus)>,
Extends a collection with the contents of an iterator. Read more
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
🔬This is a nightly-only experimental API. (
extend_one
)Extends a collection with exactly one element.
Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
🔬This is a nightly-only experimental API. (
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
Source§impl FromIterator<(ControllerIndex, ControllerType, ControllerBus)> for ReadExtendedControllerIndexListReply
impl FromIterator<(ControllerIndex, ControllerType, ControllerBus)> for ReadExtendedControllerIndexListReply
Source§fn from_iter<T2F99A5F6AE614587BADEEAAB29145B70>(
iter: T2F99A5F6AE614587BADEEAAB29145B70,
) -> Selfwhere
T2F99A5F6AE614587BADEEAAB29145B70: IntoIterator<Item = (ControllerIndex, ControllerType, ControllerBus)>,
fn from_iter<T2F99A5F6AE614587BADEEAAB29145B70>(
iter: T2F99A5F6AE614587BADEEAAB29145B70,
) -> Selfwhere
T2F99A5F6AE614587BADEEAAB29145B70: IntoIterator<Item = (ControllerIndex, ControllerType, ControllerBus)>,
Creates a value from an iterator. Read more
Source§impl IntoIterator for ReadExtendedControllerIndexListReply
impl IntoIterator for ReadExtendedControllerIndexListReply
Source§type Item = (ControllerIndex, ControllerType, ControllerBus)
type Item = (ControllerIndex, ControllerType, ControllerBus)
The type of the elements being iterated over.
Source§type IntoIter = IntoIter<(ControllerIndex, ControllerType, ControllerBus)>
type IntoIter = IntoIter<(ControllerIndex, ControllerType, ControllerBus)>
Which kind of iterator are we turning this into?
Auto Trait Implementations§
impl Freeze for ReadExtendedControllerIndexListReply
impl RefUnwindSafe for ReadExtendedControllerIndexListReply
impl Send for ReadExtendedControllerIndexListReply
impl Sync for ReadExtendedControllerIndexListReply
impl Unpin for ReadExtendedControllerIndexListReply
impl UnwindSafe for ReadExtendedControllerIndexListReply
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