libaubo 0.1.1

Rust bindings for the Hans robot
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::{AuboRobot, AuboType};

pub trait AuboC {}

pub struct _AuboC5 {}

impl AuboC for _AuboC5 {}
impl AuboType for _AuboC5 {
    const N: usize = 6;
}

pub type AuboC5 = AuboRobot<_AuboC5, { _AuboC5::N }>;