depthai 0.1.3

Experimental Rust bindings and idiomatic wrapper for Luxonis DepthAI-Core v3.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[test]
fn test_new_api_concept() {
    // TODO: Create mock so we can test node creation and linking without hardware.
    /*
    let pipeline = Pipeline::new().build()?;
    
    let cam = pipeline.create_with::<CameraNode, _>(CameraBoardSocket::CamA)?;
    let stereo = pipeline.create::<StereoDepthNode>()?;
    
    cam.video()?.link(&stereo.left()?)?;
    */
}