Struct pc_keyboard::Ps2Decoder

source ·
pub struct Ps2Decoder { /* private fields */ }
Expand description

Handles decoding of IBM PS/2 Keyboard (and IBM PC/AT Keyboard) bit-streams.

Implementations§

source§

impl Ps2Decoder

source

pub const fn new() -> Ps2Decoder

Build a new PS/2 protocol decoder.

source

pub fn clear(&mut self)

Clears the bit register.

Call this when there is a timeout reading data from the keyboard.

source

pub fn add_bit(&mut self, bit: bool) -> Result<Option<u8>, Error>

Shift a bit into the register.

Until the last bit is added you get Ok(None) returned.

source

pub fn add_word(&self, word: u16) -> Result<u8, Error>

Process an entire 11-bit word.

Must be packed into the bottom 11-bits of the 16-bit value.

Trait Implementations§

source§

impl Debug for Ps2Decoder

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Ps2Decoder

§

impl RefUnwindSafe for Ps2Decoder

§

impl Send for Ps2Decoder

§

impl Sync for Ps2Decoder

§

impl Unpin for Ps2Decoder

§

impl UnwindSafe for Ps2Decoder

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.