[go: up one dir, main page]

libseat 0.1.0

Safe libseat bindings
Documentation

WIP!!!

libseat-rs

let seat = Seat::open(
    |seat| {
        println!("Enable");
        println!("Name: {}", seat.name());
    },
    |seat| {
        println!("Disable");
        seat.disable().unwrap();
    },
);