pub struct ScancodeSet1 { /* private fields */ }
Expand description

Contains the implementation of Scancode Set 1.

See the OS dev wiki: https://wiki.osdev.org/PS/2_Keyboard#Scan_Code_Set_1

Implementations§

source§

impl ScancodeSet1

source

pub const fn new() -> ScancodeSet1

Construct a new ScancodeSet1 decoder.

Examples found in repository?
examples/scancodes.rs (line 4)
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
fn main() {
    let mut s = ScancodeSet1::new();
    // [ 0x01 ] means "Pressed Escape" in Set 1
    match s.advance_state(0x01) {
        Ok(Some(KeyEvent { code, state })) => {
            println!("Scancode Set 1 0x01 is KeyCode '{code:?}' KeyState '{state:?}'");
        }
        Ok(None) => {
            println!("This is wrong, we didn't think that was a complete sequence");
        }
        Err(e) => {
            println!("There was an error: {e:?}");
        }
    }
    // [ 0x81 ] means "Released Escape" in Set 1
    match s.advance_state(0x81) {
        Ok(Some(KeyEvent { code, state })) => {
            println!("Scancode Set 1 0x81 is KeyCode '{code:?}' KeyState '{state:?}'");
        }
        Ok(None) => {
            println!("This is wrong, we didn't think that was a complete sequence");
        }
        Err(e) => {
            println!("There was an error: {e:?}");
        }
    }

    let mut s = ScancodeSet2::new();
    // [ 0x01 ] means "Pressed F9" in Set 2
    match s.advance_state(0x01) {
        Ok(Some(KeyEvent { code, state })) => {
            println!("Scancode Set 2 0x01 is KeyCode '{code:?}' KeyState '{state:?}'");
        }
        Ok(None) => {
            println!("This is wrong, we didn't think that was a complete sequence");
        }
        Err(e) => {
            println!("There was an error: {e:?}");
        }
    }
    // [ 0xF0, 0x01 ] means "Released F9" in Set 2
    assert_eq!(Ok(None), s.advance_state(0xF0));
    match s.advance_state(0x01) {
        Ok(Some(KeyEvent { code, state })) => {
            println!("Scancode Set 2 0xF0 0x01 is KeyCode '{code:?}' KeyState '{state:?}'");
        }
        Ok(None) => {
            println!("This is wrong, we didn't think that was a complete sequence");
        }
        Err(e) => {
            println!("There was an error: {e:?}");
        }
    }
}

Trait Implementations§

source§

impl ScancodeSet for ScancodeSet1

source§

fn advance_state(&mut self, code: u8) -> Result<Option<KeyEvent>, Error>

Implements state logic for scancode set 1

Start:
  • E0 => Goto Extended
  • E1 => Goto Extended 2
  • < 0x80 => Key Down
  • >= 0x80 => Key Up
Extended:
  • < 0x80 => Extended Key Down
  • >= 0x80 => Extended Key Up
Extended 2:
  • < 0x80 => Extended 2 Key Down
  • >= 0x80 => Extended 2 Key Up

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

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

source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.