pub struct LoadBlockedKeys(/* private fields */);
Expand description
Load Blocked Keys Command
Implementations§
Source§impl LoadBlockedKeys
impl LoadBlockedKeys
pub fn iter(&self) -> impl Iterator<Item = &BlockedKey>
pub fn iter_mut(&mut self) -> impl Iterator<Item = &mut BlockedKey>
Trait Implementations§
Source§impl CommandRequest for LoadBlockedKeys
impl CommandRequest for LoadBlockedKeys
Source§const CODE: CommandCode = CommandCode::LoadBlockedKeys
const CODE: CommandCode = CommandCode::LoadBlockedKeys
Command code.
Source§type Reply = LoadBlockedKeysReply
type Reply = LoadBlockedKeysReply
Return type for this command.
Source§impl Debug for LoadBlockedKeys
impl Debug for LoadBlockedKeys
Source§impl Extend<BlockedKey> for LoadBlockedKeys
impl Extend<BlockedKey> for LoadBlockedKeys
Source§fn extend<T789979AD04B840B9BCA2350BD2215CBC>(
&mut self,
iter: T789979AD04B840B9BCA2350BD2215CBC,
)where
T789979AD04B840B9BCA2350BD2215CBC: IntoIterator<Item = BlockedKey>,
fn extend<T789979AD04B840B9BCA2350BD2215CBC>(
&mut self,
iter: T789979AD04B840B9BCA2350BD2215CBC,
)where
T789979AD04B840B9BCA2350BD2215CBC: IntoIterator<Item = BlockedKey>,
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 From<LoadBlockedKeys> for Command
impl From<LoadBlockedKeys> for Command
Source§fn from(v: LoadBlockedKeys) -> Self
fn from(v: LoadBlockedKeys) -> Self
Converts to this type from the input type.
Source§impl FromIterator<BlockedKey> for LoadBlockedKeys
impl FromIterator<BlockedKey> for LoadBlockedKeys
Source§fn from_iter<T2F99A5F6AE614587BADEEAAB29145B70>(
iter: T2F99A5F6AE614587BADEEAAB29145B70,
) -> Selfwhere
T2F99A5F6AE614587BADEEAAB29145B70: IntoIterator<Item = BlockedKey>,
fn from_iter<T2F99A5F6AE614587BADEEAAB29145B70>(
iter: T2F99A5F6AE614587BADEEAAB29145B70,
) -> Selfwhere
T2F99A5F6AE614587BADEEAAB29145B70: IntoIterator<Item = BlockedKey>,
Creates a value from an iterator. Read more
Source§impl IntoIterator for LoadBlockedKeys
impl IntoIterator for LoadBlockedKeys
Auto Trait Implementations§
impl Freeze for LoadBlockedKeys
impl RefUnwindSafe for LoadBlockedKeys
impl Send for LoadBlockedKeys
impl Sync for LoadBlockedKeys
impl Unpin for LoadBlockedKeys
impl UnwindSafe for LoadBlockedKeys
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