diff --git a/Cargo.lock b/Cargo.lock index 2a89d78..605ba55 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3,6 +3,13 @@ [[package]] name = "ftdi-prog" version = "0.1.0" +dependencies = [ + "ftdi-vcp-rs", +] + +[[package]] +name = "ftdi-vcp-rs" +version = "0.1.0" dependencies = [ "ftdi-vcp-sys", ] diff --git a/Cargo.toml b/Cargo.toml index d6ee422..3f3a4fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,6 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -ftdi-vcp-sys = { path = "ftdi-vcp-sys" } +ftdi-vcp-rs = { path = "ftdi-vcp-rs" } [build-dependencies] # cc = { version = "1.0", features = ["parallel"] } diff --git a/ftdi-vcp-rs/Cargo.lock b/ftdi-vcp-rs/Cargo.lock new file mode 100644 index 0000000..5a33de1 --- /dev/null +++ b/ftdi-vcp-rs/Cargo.lock @@ -0,0 +1,37 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "ftdi-vcp-rs" +version = "0.1.0" +dependencies = [ + "ftdi-vcp-sys", +] + +[[package]] +name = "ftdi-vcp-sys" +version = "0.1.0" +dependencies = [ + "winapi", +] + +[[package]] +name = "winapi" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" diff --git a/ftdi-vcp-rs/Cargo.toml b/ftdi-vcp-rs/Cargo.toml new file mode 100644 index 0000000..04fa12e --- /dev/null +++ b/ftdi-vcp-rs/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "ftdi-vcp-rs" +version = "0.1.0" +authors = ["Sean Cross "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +ftdi-vcp-sys = { path = "../ftdi-vcp-sys" } diff --git a/ftdi-vcp-rs/src/lib.rs b/ftdi-vcp-rs/src/lib.rs new file mode 100644 index 0000000..83c0367 --- /dev/null +++ b/ftdi-vcp-rs/src/lib.rs @@ -0,0 +1,120 @@ +use ftdi_vcp_sys::{ + FT_Close, FT_GetComPortNumber, FT_OpenEx, FT_HANDLE, FT_OPEN_BY_DESCRIPTION, FT_STATUS, LONG, + PVOID, +}; +use std::ffi::CString; +use std::mem::MaybeUninit; +use std::convert::TryInto; + +#[derive(PartialEq, Debug)] +pub enum Error { + NoError, + InvalidHandle, + DeviceNotFound, + DeviceNotOpened, + IoError, + InsufficientResources, + InvalidParameter, + InvalidBaudRate, + DeviceNotOpenedForErase, + DeviceNotOpenedForWrite, + FailedToWriteDevice, + EepromReadFailed, + EepromWriteFailed, + EepromEraseFailed, + EepromNotPresent, + EepromNotProgrammed, + InvalidArgs, + NotSupported, + OtherError, + DeviceListNotReady, + NoComPortAssigned, + UnknownError(FT_STATUS), +} + +impl From for Error { + fn from(src: FT_STATUS) -> Self { + match src { + 0 => Error::NoError, + 1 => Error::InvalidHandle, + 2 => Error::DeviceNotFound, + 3 => Error::DeviceNotOpened, + 4 => Error::IoError, + 5 => Error::InsufficientResources, + 6 => Error::InvalidParameter, + 7 => Error::InvalidBaudRate, + 8 => Error::DeviceNotOpenedForErase, + 9 => Error::DeviceNotOpenedForWrite, + 10 => Error::FailedToWriteDevice, + 11 => Error::EepromReadFailed, + 12 => Error::EepromWriteFailed, + 13 => Error::EepromEraseFailed, + 14 => Error::EepromNotPresent, + 15 => Error::EepromNotProgrammed, + 16 => Error::InvalidArgs, + 17 => Error::NotSupported, + 18 => Error::OtherError, + 19 => Error::DeviceListNotReady, + x => Error::UnknownError(x), + } + } +} + +pub struct VCP { + handle: FT_HANDLE, +} + +impl VCP { + pub fn new_from_name(name: &str) -> Result { + let c_str = CString::new(name).expect("string already contained null bytes"); + let mut handle = MaybeUninit::::uninit(); + let result = Error::from(unsafe { + FT_OpenEx( + c_str.as_ptr() as PVOID, + FT_OPEN_BY_DESCRIPTION, + handle.as_mut_ptr(), + ) + }); + if result != Error::NoError { + Err(result) + } else { + Ok(VCP { + handle: unsafe { handle.assume_init() }, + }) + } + } + + pub fn com_port(&self) -> Result { + let mut com_port_number = MaybeUninit::::uninit(); + let result = Error::from(unsafe { + FT_GetComPortNumber(self.handle, com_port_number.as_mut_ptr()) + }); + if result != Error::NoError { + Err(result) + } else { + let com_port_number = unsafe { com_port_number.assume_init() }; + if let Ok(e) = com_port_number.try_into() { + Ok(e) + } else { + Err(Error::NoComPortAssigned) + } + } + } +} + +impl Drop for VCP { + fn drop(&mut self) { + let result = Error::from(unsafe { FT_Close(self.handle) }); + if result != Error::NoError { + panic!("unable to close device: {:?}", result); + } + } +} + +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +} diff --git a/ftdi-vcp-sys/build.rs b/ftdi-vcp-sys/build.rs index 2b93131..8347022 100644 --- a/ftdi-vcp-sys/build.rs +++ b/ftdi-vcp-sys/build.rs @@ -1,7 +1,17 @@ +use std::env; +use std::fs; +use std::path::PathBuf; fn main() { - let vcp_dir = "lib/vcp-2.12.28/amd64"; - println!("cargo:rustc-link-search=native={}", vcp_dir); + let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap()); + + fs::copy( + "lib/vcp-2.12.28/amd64/ftd2xx.lib", + out_dir.join(format!("ftd2xx.lib")), + ) + .unwrap(); + println!("cargo:rustc-link-search=native={}", out_dir.into_os_string().into_string().expect("invalid path string")); + // println!("cargo:rustc-link-search=native={}", vcp_dir); // println!("cargo:rustc-link-lib=static={}/ftd2xx", vcp_dir); // cc::Build::new() // .file("foo.c") diff --git a/ftdi-vcp-sys/src/lib.rs b/ftdi-vcp-sys/src/lib.rs index 02d10f0..936e5f6 100644 --- a/ftdi-vcp-sys/src/lib.rs +++ b/ftdi-vcp-sys/src/lib.rs @@ -6,9 +6,9 @@ pub use winapi::shared::minwindef::{DWORD, LPDWORD, LPLONG, LPVOID}; pub use winapi::shared::ntdef::{PVOID, ULONG, LONG}; #[allow(non_camel_case_types)] -type FT_HANDLE = PVOID; +pub type FT_HANDLE = PVOID; #[allow(non_camel_case_types)] -type FT_STATUS = ULONG; +pub type FT_STATUS = ULONG; #[allow(non_camel_case_types)] #[repr(C)] @@ -68,13 +68,13 @@ pub const FT_LIST_MASK: DWORD = (FT_LIST_NUMBER_ONLY | FT_LIST_BY_INDEX | FT_LIS #[allow(non_snake_case)] #[allow(dead_code)] extern "stdcall" { - fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS; - fn FT_CreateDeviceInfoList(lpdwNumDevs: LPDWORD) -> FT_STATUS; - fn FT_GetDeviceInfoList( + pub fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS; + pub fn FT_CreateDeviceInfoList(lpdwNumDevs: LPDWORD) -> FT_STATUS; + pub fn FT_GetDeviceInfoList( pDest: *mut FT_DEVICE_LIST_INFO_NODE, lpdwNumDevs: LPDWORD, ) -> FT_STATUS; - fn FT_GetDeviceInfoDetail( + pub fn FT_GetDeviceInfoDetail( dwIndex: DWORD, lpdwFlags: LPDWORD, lpdwType: LPDWORD, @@ -84,10 +84,10 @@ extern "stdcall" { lpDescription: LPVOID, pftHandle: *mut FT_HANDLE, ) -> FT_STATUS; - fn FT_GetComPortNumber(ftHandle: FT_HANDLE, lpdwComPortNumber: LPLONG) -> FT_STATUS; - fn FT_Open(deviceNumber: u32, pHandle: *mut FT_HANDLE) -> FT_STATUS; - fn FT_OpenEx(pArg1: PVOID, Flags: DWORD, pHandle: *mut FT_HANDLE) -> FT_STATUS; - fn FT_Close(ftHandle: FT_HANDLE) -> FT_STATUS; + pub fn FT_GetComPortNumber(ftHandle: FT_HANDLE, lpdwComPortNumber: LPLONG) -> FT_STATUS; + pub fn FT_Open(deviceNumber: u32, pHandle: *mut FT_HANDLE) -> FT_STATUS; + pub fn FT_OpenEx(pArg1: PVOID, Flags: DWORD, pHandle: *mut FT_HANDLE) -> FT_STATUS; + pub fn FT_Close(ftHandle: FT_HANDLE) -> FT_STATUS; } pub fn create_device_info_list() -> Result { @@ -158,7 +158,7 @@ mod tests { #[test] fn open_device() { - let desc = b"Lattice FTUSB Interface Cable B\0"; + let desc = b"iCEBreaker V1.0e B\0"; let mut handle = 0 as FT_HANDLE; let result = unsafe { FT_OpenEx( diff --git a/ftdi-vcp-sys/target/.rustc_info.json b/ftdi-vcp-sys/target/.rustc_info.json deleted file mode 100644 index 69728c3..0000000 --- a/ftdi-vcp-sys/target/.rustc_info.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc_fingerprint":2372964052909571043,"outputs":{"4476964694761187371":["___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\nC:\\Users\\smcro\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\ndebug_assertions\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"msvc\"\ntarget_family=\"windows\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_os=\"windows\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"pc\"\nwindows\n",""],"1164083562126845933":["rustc 1.41.1 (f3e1a954d 2020-02-24)\nbinary: rustc\ncommit-hash: f3e1a954d2ead4e2fc197c7da7d71e6c61bad196\ncommit-date: 2020-02-24\nhost: x86_64-pc-windows-msvc\nrelease: 1.41.1\nLLVM version: 9.0\n",""]},"successes":{}} \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.cargo-lock b/ftdi-vcp-sys/target/debug/.cargo-lock deleted file mode 100644 index e69de29..0000000 diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-58b72ef14df83c34/dep-test-lib-ftdi_vcp_sys-58b72ef14df83c34 b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-58b72ef14df83c34/dep-test-lib-ftdi_vcp_sys-58b72ef14df83c34 deleted file mode 100644 index bfa06bf..0000000 Binary files a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-58b72ef14df83c34/dep-test-lib-ftdi_vcp_sys-58b72ef14df83c34 and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-58b72ef14df83c34/invoked.timestamp b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-58b72ef14df83c34/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-58b72ef14df83c34/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-58b72ef14df83c34/test-lib-ftdi_vcp_sys-58b72ef14df83c34 b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-58b72ef14df83c34/test-lib-ftdi_vcp_sys-58b72ef14df83c34 deleted file mode 100644 index 83c6baf..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-58b72ef14df83c34/test-lib-ftdi_vcp_sys-58b72ef14df83c34 +++ /dev/null @@ -1 +0,0 @@ -cb505e63aeaac006 \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-58b72ef14df83c34/test-lib-ftdi_vcp_sys-58b72ef14df83c34.json b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-58b72ef14df83c34/test-lib-ftdi_vcp_sys-58b72ef14df83c34.json deleted file mode 100644 index 5f3f0a4..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-58b72ef14df83c34/test-lib-ftdi_vcp_sys-58b72ef14df83c34.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13421301608916057402,"features":"[]","target":11924813428260860161,"profile":8248545651247322450,"path":10872709659218687626,"deps":[[2693066915275761720,"winapi",false,14289487232430214174],[9924424717942368762,"build_script_build",false,1376035238852711626]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\ftdi-vcp-sys-58b72ef14df83c34\\dep-test-lib-ftdi_vcp_sys-58b72ef14df83c34"}}],"rustflags":[],"metadata":8199227496823213954} \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7a2bd70881ee01b2/invoked.timestamp b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7a2bd70881ee01b2/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7a2bd70881ee01b2/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7a2bd70881ee01b2/output b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7a2bd70881ee01b2/output deleted file mode 100644 index 9e956e5..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7a2bd70881ee01b2/output +++ /dev/null @@ -1,36 +0,0 @@ -{"message":"expected `{`, found `FT_GetComPortNumber`","code":null,"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":2893,"byte_end":2912,"line_start":77,"line_end":77,"column_start":33,"column_end":52,"is_primary":true,"text":[{"text":" let result = unsafe FT_GetComPortNumber","highlight_start":33,"highlight_end":52}],"label":"expected `{`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: expected `{`, found `FT_GetComPortNumber`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:77:33\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m77\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m let result = unsafe FT_GetComPortNumber\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mexpected `{`\u001b[0m\n\n"} -{"message":"failed to resolve: use of undeclared type or module `CStr`","code":{"code":"E0433","explanation":"An undeclared type or module was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type or module `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":2451,"byte_end":2455,"line_start":67,"line_end":67,"column_start":40,"column_end":44,"is_primary":true,"text":[{"text":" let description = unsafe { CStr::from_ptr(p) };","highlight_start":40,"highlight_end":44}],"label":"use of undeclared type or module `CStr`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0433]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: failed to resolve: use of undeclared type or module `CStr`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:67:40\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m67\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m let description = unsafe { CStr::from_ptr(p) };\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9muse of undeclared type or module `CStr`\u001b[0m\n\n"} -{"message":"cannot find type `PVOID` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":118,"byte_end":123,"line_start":5,"line_end":5,"column_start":30,"column_end":35,"is_primary":true,"text":[{"text":" fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS;","highlight_start":30,"highlight_end":35}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `PVOID` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:5:30\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `PVOID` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":132,"byte_end":137,"line_start":5,"line_end":5,"column_start":44,"column_end":49,"is_primary":true,"text":[{"text":" fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS;","highlight_start":44,"highlight_end":49}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `PVOID` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:5:44\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `DWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":146,"byte_end":151,"line_start":5,"line_end":5,"column_start":58,"column_end":63,"is_primary":true,"text":[{"text":" fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS;","highlight_start":58,"highlight_end":63}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `DWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:5:58\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_STATUS` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":156,"byte_end":165,"line_start":5,"line_end":5,"column_start":68,"column_end":77,"is_primary":true,"text":[{"text":" fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS;","highlight_start":68,"highlight_end":77}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_STATUS` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:5:68\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPDWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":211,"byte_end":218,"line_start":6,"line_end":6,"column_start":45,"column_end":52,"is_primary":true,"text":[{"text":" fn FT_CreateDeviceInfoList(lpdwNumDevs: LPDWORD) -> FT_STATUS;","highlight_start":45,"highlight_end":52}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPDWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:6:45\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m6\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_CreateDeviceInfoList(lpdwNumDevs: LPDWORD) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_STATUS` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":223,"byte_end":232,"line_start":6,"line_end":6,"column_start":57,"column_end":66,"is_primary":true,"text":[{"text":" fn FT_CreateDeviceInfoList(lpdwNumDevs: LPDWORD) -> FT_STATUS;","highlight_start":57,"highlight_end":66}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_STATUS` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:6:57\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m6\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_CreateDeviceInfoList(lpdwNumDevs: LPDWORD) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_DEVICE_LIST_INFO_NODE` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":283,"byte_end":307,"line_start":8,"line_end":8,"column_start":21,"column_end":45,"is_primary":true,"text":[{"text":" pDest: *mut FT_DEVICE_LIST_INFO_NODE,","highlight_start":21,"highlight_end":45}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_DEVICE_LIST_INFO_NODE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:8:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m8\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m pDest: *mut FT_DEVICE_LIST_INFO_NODE,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPDWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":330,"byte_end":337,"line_start":9,"line_end":9,"column_start":22,"column_end":29,"is_primary":true,"text":[{"text":" lpdwNumDevs: LPDWORD,","highlight_start":22,"highlight_end":29}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPDWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:9:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m9\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m lpdwNumDevs: LPDWORD,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_STATUS` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":348,"byte_end":357,"line_start":10,"line_end":10,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":" ) -> FT_STATUS;","highlight_start":10,"highlight_end":19}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_STATUS` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:10:10\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m10\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m ) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `DWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":407,"byte_end":412,"line_start":12,"line_end":12,"column_start":18,"column_end":23,"is_primary":true,"text":[{"text":" dwIndex: DWORD,","highlight_start":18,"highlight_end":23}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `DWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:12:18\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m12\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m dwIndex: DWORD,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPDWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":433,"byte_end":440,"line_start":13,"line_end":13,"column_start":20,"column_end":27,"is_primary":true,"text":[{"text":" lpdwFlags: LPDWORD,","highlight_start":20,"highlight_end":27}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPDWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:13:20\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m13\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m lpdwFlags: LPDWORD,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPDWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":460,"byte_end":467,"line_start":14,"line_end":14,"column_start":19,"column_end":26,"is_primary":true,"text":[{"text":" lpdwType: LPDWORD,","highlight_start":19,"highlight_end":26}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPDWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:14:19\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m14\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m lpdwType: LPDWORD,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPDWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":485,"byte_end":492,"line_start":15,"line_end":15,"column_start":17,"column_end":24,"is_primary":true,"text":[{"text":" lpdwID: LPDWORD,","highlight_start":17,"highlight_end":24}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPDWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:15:17\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m15\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m lpdwID: LPDWORD,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPDWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":513,"byte_end":520,"line_start":16,"line_end":16,"column_start":20,"column_end":27,"is_primary":true,"text":[{"text":" lpdwLocId: LPDWORD,","highlight_start":20,"highlight_end":27}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPDWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:16:20\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m16\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m lpdwLocId: LPDWORD,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPVOID` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":546,"byte_end":552,"line_start":17,"line_end":17,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" lpSerialNumber: LPVOID,","highlight_start":25,"highlight_end":31}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPVOID` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:17:25\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m17\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m lpSerialNumber: LPVOID,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPVOID` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":577,"byte_end":583,"line_start":18,"line_end":18,"column_start":24,"column_end":30,"is_primary":true,"text":[{"text":" lpDescription: LPVOID,","highlight_start":24,"highlight_end":30}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPVOID` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:18:24\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m lpDescription: LPVOID,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_HANDLE` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":609,"byte_end":618,"line_start":19,"line_end":19,"column_start":25,"column_end":34,"is_primary":true,"text":[{"text":" pftHandle: *mut FT_HANDLE,","highlight_start":25,"highlight_end":34}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_HANDLE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:19:25\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m19\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m pftHandle: *mut FT_HANDLE,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_STATUS` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":629,"byte_end":638,"line_start":20,"line_end":20,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":" ) -> FT_STATUS;","highlight_start":10,"highlight_end":19}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_STATUS` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:20:10\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m20\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m ) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_HANDLE` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":677,"byte_end":686,"line_start":21,"line_end":21,"column_start":38,"column_end":47,"is_primary":true,"text":[{"text":" fn FT_GetComPortNumber(ftHandle: FT_HANDLE, lpdwComPortNumber: LPLONG) -> FT_STATUS;","highlight_start":38,"highlight_end":47}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_HANDLE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:21:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m21\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_GetComPortNumber(ftHandle: FT_HANDLE, lpdwComPortNumber: LPLONG) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPLONG` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":707,"byte_end":713,"line_start":21,"line_end":21,"column_start":68,"column_end":74,"is_primary":true,"text":[{"text":" fn FT_GetComPortNumber(ftHandle: FT_HANDLE, lpdwComPortNumber: LPLONG) -> FT_STATUS;","highlight_start":68,"highlight_end":74}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPLONG` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:21:68\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m21\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_GetComPortNumber(ftHandle: FT_HANDLE, lpdwComPortNumber: LPLONG) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_STATUS` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":718,"byte_end":727,"line_start":21,"line_end":21,"column_start":79,"column_end":88,"is_primary":true,"text":[{"text":" fn FT_GetComPortNumber(ftHandle: FT_HANDLE, lpdwComPortNumber: LPLONG) -> FT_STATUS;","highlight_start":79,"highlight_end":88}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_STATUS` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:21:79\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m21\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_GetComPortNumber(ftHandle: FT_HANDLE, lpdwComPortNumber: LPLONG) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `int` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":758,"byte_end":761,"line_start":22,"line_end":22,"column_start":30,"column_end":33,"is_primary":true,"text":[{"text":" fn FT_Open(deviceNumber: int, pHandle: *mut FT_HANDLE) -> FT_STATUS;","highlight_start":30,"highlight_end":33}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `int` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:22:30\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m22\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_Open(deviceNumber: int, pHandle: *mut FT_HANDLE) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_HANDLE` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":777,"byte_end":786,"line_start":22,"line_end":22,"column_start":49,"column_end":58,"is_primary":true,"text":[{"text":" fn FT_Open(deviceNumber: int, pHandle: *mut FT_HANDLE) -> FT_STATUS;","highlight_start":49,"highlight_end":58}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_HANDLE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:22:49\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m22\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_Open(deviceNumber: int, pHandle: *mut FT_HANDLE) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_STATUS` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":791,"byte_end":800,"line_start":22,"line_end":22,"column_start":63,"column_end":72,"is_primary":true,"text":[{"text":" fn FT_Open(deviceNumber: int, pHandle: *mut FT_HANDLE) -> FT_STATUS;","highlight_start":63,"highlight_end":72}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_STATUS` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:22:63\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m22\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_Open(deviceNumber: int, pHandle: *mut FT_HANDLE) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `DWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":928,"byte_end":933,"line_start":30,"line_end":30,"column_start":27,"column_end":32,"is_primary":true,"text":[{"text":" let device_count: DWORD = 0;","highlight_start":27,"highlight_end":32}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `DWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:30:27\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m30\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m let device_count: DWORD = 0;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find function, tuple struct or tuple variant `FT_CreateDeviceInfoList` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":1082,"byte_end":1105,"line_start":32,"line_end":32,"column_start":31,"column_end":54,"is_primary":true,"text":[{"text":" let result = unsafe { FT_CreateDeviceInfoList(&device_count as *const _ as LPDWORD) };","highlight_start":31,"highlight_end":54}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"possible candidate is found in another module, you can import it into scope","code":null,"level":"help","spans":[{"file_name":"src\\lib.rs","byte_start":846,"byte_end":846,"line_start":28,"line_end":28,"column_start":5,"column_end":5,"is_primary":true,"text":[{"text":" fn it_works() {","highlight_start":5,"highlight_end":5}],"label":null,"suggested_replacement":"use crate::FT_CreateDeviceInfoList;\n\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find function, tuple struct or tuple variant `FT_CreateDeviceInfoList` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:32:31\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m32\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m let result = unsafe { FT_CreateDeviceInfoList(&device_count as *const _ as LPDWORD) };\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: possible candidate is found in another module, you can import it into scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m28\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m use crate::FT_CreateDeviceInfoList;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\n"} -{"message":"cannot find type `LPDWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":1135,"byte_end":1142,"line_start":32,"line_end":32,"column_start":84,"column_end":91,"is_primary":true,"text":[{"text":" let result = unsafe { FT_CreateDeviceInfoList(&device_count as *const _ as LPDWORD) };","highlight_start":84,"highlight_end":91}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPDWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:32:84\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m32\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m let result = unsafe { FT_CreateDeviceInfoList(&device_count as *const _ as LPDWORD) };\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find struct, variant or union type `FT_DEVICE_LIST_INFO_NODE` in this scope","code":{"code":"E0422","explanation":"You are trying to use an identifier that is either undefined or not a struct.\nErroneous code example:\n\n```compile_fail,E0422\nfn main () {\n let x = Foo { x: 1, y: 2 };\n}\n```\n\nIn this case, `Foo` is undefined, so it inherently isn't anything, and\ndefinitely not a struct.\n\n```compile_fail\nfn main () {\n let foo = 1;\n let x = foo { x: 1, y: 2 };\n}\n```\n\nIn this case, `foo` is defined, but is not a struct, so Rust can't use it as\none.\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":1443,"byte_end":1467,"line_start":42,"line_end":42,"column_start":13,"column_end":37,"is_primary":true,"text":[{"text":" FT_DEVICE_LIST_INFO_NODE {","highlight_start":13,"highlight_end":37}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0422]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find struct, variant or union type `FT_DEVICE_LIST_INFO_NODE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:42:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m42\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m FT_DEVICE_LIST_INFO_NODE {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_HANDLE` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":1678,"byte_end":1687,"line_start":49,"line_end":49,"column_start":32,"column_end":41,"is_primary":true,"text":[{"text":" ftHandle: 0 as FT_HANDLE,","highlight_start":32,"highlight_end":41}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_HANDLE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:49:32\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m49\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m ftHandle: 0 as FT_HANDLE,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find function, tuple struct or tuple variant `FT_GetDeviceInfoList` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":1758,"byte_end":1778,"line_start":54,"line_end":54,"column_start":13,"column_end":33,"is_primary":true,"text":[{"text":" FT_GetDeviceInfoList(dev_info.as_mut_ptr(), &device_count as *const _ as LPDWORD)","highlight_start":13,"highlight_end":33}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"possible candidate is found in another module, you can import it into scope","code":null,"level":"help","spans":[{"file_name":"src\\lib.rs","byte_start":846,"byte_end":846,"line_start":28,"line_end":28,"column_start":5,"column_end":5,"is_primary":true,"text":[{"text":" fn it_works() {","highlight_start":5,"highlight_end":5}],"label":null,"suggested_replacement":"use crate::FT_GetDeviceInfoList;\n\n","suggestion_applicability":"Unspecified","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0425]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find function, tuple struct or tuple variant `FT_GetDeviceInfoList` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:54:13\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m54\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m FT_GetDeviceInfoList(dev_info.as_mut_ptr(), &device_count as *const _ as LPDWORD)\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14mhelp\u001b[0m\u001b[0m: possible candidate is found in another module, you can import it into scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m28\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m use crate::FT_GetDeviceInfoList;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\n"} -{"message":"cannot find type `LPDWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":1831,"byte_end":1838,"line_start":54,"line_end":54,"column_start":86,"column_end":93,"is_primary":true,"text":[{"text":" FT_GetDeviceInfoList(dev_info.as_mut_ptr(), &device_count as *const _ as LPDWORD)","highlight_start":86,"highlight_end":93}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPDWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:54:86\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m54\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m FT_GetDeviceInfoList(dev_info.as_mut_ptr(), &device_count as *const _ as LPDWORD)\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"aborting due to 33 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: aborting due to 33 previous errors\u001b[0m\n\n"} -{"message":"Some errors have detailed explanations: E0412, E0422, E0425, E0433.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;15mSome errors have detailed explanations: E0412, E0422, E0425, E0433.\u001b[0m\n"} -{"message":"For more information about an error, try `rustc --explain E0412`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;15mFor more information about an error, try `rustc --explain E0412`.\u001b[0m\n"} diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7dfd3debbf10b458/dep-lib-ftdi_vcp_sys-7dfd3debbf10b458 b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7dfd3debbf10b458/dep-lib-ftdi_vcp_sys-7dfd3debbf10b458 deleted file mode 100644 index bfa06bf..0000000 Binary files a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7dfd3debbf10b458/dep-lib-ftdi_vcp_sys-7dfd3debbf10b458 and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7dfd3debbf10b458/invoked.timestamp b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7dfd3debbf10b458/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7dfd3debbf10b458/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7dfd3debbf10b458/lib-ftdi_vcp_sys-7dfd3debbf10b458 b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7dfd3debbf10b458/lib-ftdi_vcp_sys-7dfd3debbf10b458 deleted file mode 100644 index 07411f6..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7dfd3debbf10b458/lib-ftdi_vcp_sys-7dfd3debbf10b458 +++ /dev/null @@ -1 +0,0 @@ -aa5759010a88769c \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7dfd3debbf10b458/lib-ftdi_vcp_sys-7dfd3debbf10b458.json b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7dfd3debbf10b458/lib-ftdi_vcp_sys-7dfd3debbf10b458.json deleted file mode 100644 index 9b533a7..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-7dfd3debbf10b458/lib-ftdi_vcp_sys-7dfd3debbf10b458.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13421301608916057402,"features":"[]","target":11924813428260860161,"profile":14996655781355331481,"path":10872709659218687626,"deps":[[2693066915275761720,"winapi",false,14289487232430214174],[9924424717942368762,"build_script_build",false,1376035238852711626]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\ftdi-vcp-sys-7dfd3debbf10b458\\dep-lib-ftdi_vcp_sys-7dfd3debbf10b458"}}],"rustflags":[],"metadata":8199227496823213954} \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-87f54724bfd22a2f/run-build-script-build_script_build-87f54724bfd22a2f b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-87f54724bfd22a2f/run-build-script-build_script_build-87f54724bfd22a2f deleted file mode 100644 index e073cc8..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-87f54724bfd22a2f/run-build-script-build_script_build-87f54724bfd22a2f +++ /dev/null @@ -1 +0,0 @@ -ca543c5ac2a81813 \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-87f54724bfd22a2f/run-build-script-build_script_build-87f54724bfd22a2f.json b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-87f54724bfd22a2f/run-build-script-build_script_build-87f54724bfd22a2f.json deleted file mode 100644 index d3b943c..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-87f54724bfd22a2f/run-build-script-build_script_build-87f54724bfd22a2f.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13421301608916057402,"features":"","target":0,"profile":0,"path":0,"deps":[[9924424717942368762,"build_script_build",false,4372853867711248231]],"local":[{"Precalculated":"13227858539.099377000s (D:\\Code\\ftdi-prog\\ftdi-vcp-sys\\src\\lib.rs)"}],"rustflags":[],"metadata":0} \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-8c8ea9f3baf3e349/build-script-build_script_build-8c8ea9f3baf3e349 b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-8c8ea9f3baf3e349/build-script-build_script_build-8c8ea9f3baf3e349 deleted file mode 100644 index 249ea75..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-8c8ea9f3baf3e349/build-script-build_script_build-8c8ea9f3baf3e349 +++ /dev/null @@ -1 +0,0 @@ -67379f9f6c7faf3c \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-8c8ea9f3baf3e349/build-script-build_script_build-8c8ea9f3baf3e349.json b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-8c8ea9f3baf3e349/build-script-build_script_build-8c8ea9f3baf3e349.json deleted file mode 100644 index acd4ffe..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-8c8ea9f3baf3e349/build-script-build_script_build-8c8ea9f3baf3e349.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13421301608916057402,"features":"[]","target":10429514197457385088,"profile":14996655781355331481,"path":4820456077575211582,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\ftdi-vcp-sys-8c8ea9f3baf3e349\\dep-build-script-build_script_build-8c8ea9f3baf3e349"}}],"rustflags":[],"metadata":8199227496823213954} \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-8c8ea9f3baf3e349/dep-build-script-build_script_build-8c8ea9f3baf3e349 b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-8c8ea9f3baf3e349/dep-build-script-build_script_build-8c8ea9f3baf3e349 deleted file mode 100644 index 7b40527..0000000 Binary files a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-8c8ea9f3baf3e349/dep-build-script-build_script_build-8c8ea9f3baf3e349 and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-8c8ea9f3baf3e349/invoked.timestamp b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-8c8ea9f3baf3e349/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-8c8ea9f3baf3e349/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-b8e3bca4d18f1d2b/invoked.timestamp b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-b8e3bca4d18f1d2b/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-b8e3bca4d18f1d2b/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-b8e3bca4d18f1d2b/output b/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-b8e3bca4d18f1d2b/output deleted file mode 100644 index c8d78da..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/ftdi-vcp-sys-b8e3bca4d18f1d2b/output +++ /dev/null @@ -1,27 +0,0 @@ -{"message":"expected `{`, found `FT_GetComPortNumber`","code":null,"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":2893,"byte_end":2912,"line_start":77,"line_end":77,"column_start":33,"column_end":52,"is_primary":true,"text":[{"text":" let result = unsafe FT_GetComPortNumber","highlight_start":33,"highlight_end":52}],"label":"expected `{`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: expected `{`, found `FT_GetComPortNumber`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:77:33\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m77\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m let result = unsafe FT_GetComPortNumber\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mexpected `{`\u001b[0m\n\n"} -{"message":"cannot find type `PVOID` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":118,"byte_end":123,"line_start":5,"line_end":5,"column_start":30,"column_end":35,"is_primary":true,"text":[{"text":" fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS;","highlight_start":30,"highlight_end":35}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `PVOID` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:5:30\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `PVOID` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":132,"byte_end":137,"line_start":5,"line_end":5,"column_start":44,"column_end":49,"is_primary":true,"text":[{"text":" fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS;","highlight_start":44,"highlight_end":49}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `PVOID` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:5:44\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `DWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":146,"byte_end":151,"line_start":5,"line_end":5,"column_start":58,"column_end":63,"is_primary":true,"text":[{"text":" fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS;","highlight_start":58,"highlight_end":63}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `DWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:5:58\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_STATUS` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":156,"byte_end":165,"line_start":5,"line_end":5,"column_start":68,"column_end":77,"is_primary":true,"text":[{"text":" fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS;","highlight_start":68,"highlight_end":77}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_STATUS` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:5:68\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m5\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_ListDevices(pArg1: PVOID, pArg2: PVOID, Flags: DWORD) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPDWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":211,"byte_end":218,"line_start":6,"line_end":6,"column_start":45,"column_end":52,"is_primary":true,"text":[{"text":" fn FT_CreateDeviceInfoList(lpdwNumDevs: LPDWORD) -> FT_STATUS;","highlight_start":45,"highlight_end":52}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPDWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:6:45\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m6\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_CreateDeviceInfoList(lpdwNumDevs: LPDWORD) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_STATUS` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":223,"byte_end":232,"line_start":6,"line_end":6,"column_start":57,"column_end":66,"is_primary":true,"text":[{"text":" fn FT_CreateDeviceInfoList(lpdwNumDevs: LPDWORD) -> FT_STATUS;","highlight_start":57,"highlight_end":66}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_STATUS` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:6:57\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m6\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_CreateDeviceInfoList(lpdwNumDevs: LPDWORD) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_DEVICE_LIST_INFO_NODE` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":283,"byte_end":307,"line_start":8,"line_end":8,"column_start":21,"column_end":45,"is_primary":true,"text":[{"text":" pDest: *mut FT_DEVICE_LIST_INFO_NODE,","highlight_start":21,"highlight_end":45}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_DEVICE_LIST_INFO_NODE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:8:21\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m8\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m pDest: *mut FT_DEVICE_LIST_INFO_NODE,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPDWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":330,"byte_end":337,"line_start":9,"line_end":9,"column_start":22,"column_end":29,"is_primary":true,"text":[{"text":" lpdwNumDevs: LPDWORD,","highlight_start":22,"highlight_end":29}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPDWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:9:22\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m9\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m lpdwNumDevs: LPDWORD,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_STATUS` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":348,"byte_end":357,"line_start":10,"line_end":10,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":" ) -> FT_STATUS;","highlight_start":10,"highlight_end":19}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_STATUS` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:10:10\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m10\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m ) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `DWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":407,"byte_end":412,"line_start":12,"line_end":12,"column_start":18,"column_end":23,"is_primary":true,"text":[{"text":" dwIndex: DWORD,","highlight_start":18,"highlight_end":23}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `DWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:12:18\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m12\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m dwIndex: DWORD,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPDWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":433,"byte_end":440,"line_start":13,"line_end":13,"column_start":20,"column_end":27,"is_primary":true,"text":[{"text":" lpdwFlags: LPDWORD,","highlight_start":20,"highlight_end":27}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPDWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:13:20\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m13\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m lpdwFlags: LPDWORD,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPDWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":460,"byte_end":467,"line_start":14,"line_end":14,"column_start":19,"column_end":26,"is_primary":true,"text":[{"text":" lpdwType: LPDWORD,","highlight_start":19,"highlight_end":26}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPDWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:14:19\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m14\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m lpdwType: LPDWORD,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPDWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":485,"byte_end":492,"line_start":15,"line_end":15,"column_start":17,"column_end":24,"is_primary":true,"text":[{"text":" lpdwID: LPDWORD,","highlight_start":17,"highlight_end":24}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPDWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:15:17\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m15\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m lpdwID: LPDWORD,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPDWORD` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":513,"byte_end":520,"line_start":16,"line_end":16,"column_start":20,"column_end":27,"is_primary":true,"text":[{"text":" lpdwLocId: LPDWORD,","highlight_start":20,"highlight_end":27}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPDWORD` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:16:20\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m16\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m lpdwLocId: LPDWORD,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPVOID` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":546,"byte_end":552,"line_start":17,"line_end":17,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" lpSerialNumber: LPVOID,","highlight_start":25,"highlight_end":31}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPVOID` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:17:25\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m17\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m lpSerialNumber: LPVOID,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPVOID` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":577,"byte_end":583,"line_start":18,"line_end":18,"column_start":24,"column_end":30,"is_primary":true,"text":[{"text":" lpDescription: LPVOID,","highlight_start":24,"highlight_end":30}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPVOID` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:18:24\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m lpDescription: LPVOID,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_HANDLE` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":609,"byte_end":618,"line_start":19,"line_end":19,"column_start":25,"column_end":34,"is_primary":true,"text":[{"text":" pftHandle: *mut FT_HANDLE,","highlight_start":25,"highlight_end":34}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_HANDLE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:19:25\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m19\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m pftHandle: *mut FT_HANDLE,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_STATUS` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":629,"byte_end":638,"line_start":20,"line_end":20,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":" ) -> FT_STATUS;","highlight_start":10,"highlight_end":19}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_STATUS` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:20:10\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m20\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m ) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_HANDLE` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":677,"byte_end":686,"line_start":21,"line_end":21,"column_start":38,"column_end":47,"is_primary":true,"text":[{"text":" fn FT_GetComPortNumber(ftHandle: FT_HANDLE, lpdwComPortNumber: LPLONG) -> FT_STATUS;","highlight_start":38,"highlight_end":47}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_HANDLE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:21:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m21\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_GetComPortNumber(ftHandle: FT_HANDLE, lpdwComPortNumber: LPLONG) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `LPLONG` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":707,"byte_end":713,"line_start":21,"line_end":21,"column_start":68,"column_end":74,"is_primary":true,"text":[{"text":" fn FT_GetComPortNumber(ftHandle: FT_HANDLE, lpdwComPortNumber: LPLONG) -> FT_STATUS;","highlight_start":68,"highlight_end":74}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `LPLONG` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:21:68\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m21\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_GetComPortNumber(ftHandle: FT_HANDLE, lpdwComPortNumber: LPLONG) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_STATUS` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":718,"byte_end":727,"line_start":21,"line_end":21,"column_start":79,"column_end":88,"is_primary":true,"text":[{"text":" fn FT_GetComPortNumber(ftHandle: FT_HANDLE, lpdwComPortNumber: LPLONG) -> FT_STATUS;","highlight_start":79,"highlight_end":88}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_STATUS` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:21:79\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m21\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_GetComPortNumber(ftHandle: FT_HANDLE, lpdwComPortNumber: LPLONG) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `int` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":758,"byte_end":761,"line_start":22,"line_end":22,"column_start":30,"column_end":33,"is_primary":true,"text":[{"text":" fn FT_Open(deviceNumber: int, pHandle: *mut FT_HANDLE) -> FT_STATUS;","highlight_start":30,"highlight_end":33}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `int` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:22:30\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m22\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_Open(deviceNumber: int, pHandle: *mut FT_HANDLE) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_HANDLE` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":777,"byte_end":786,"line_start":22,"line_end":22,"column_start":49,"column_end":58,"is_primary":true,"text":[{"text":" fn FT_Open(deviceNumber: int, pHandle: *mut FT_HANDLE) -> FT_STATUS;","highlight_start":49,"highlight_end":58}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_HANDLE` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:22:49\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m22\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_Open(deviceNumber: int, pHandle: *mut FT_HANDLE) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"cannot find type `FT_STATUS` in this scope","code":{"code":"E0412","explanation":"The type name used is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"src\\lib.rs","byte_start":791,"byte_end":800,"line_start":22,"line_end":22,"column_start":63,"column_end":72,"is_primary":true,"text":[{"text":" fn FT_Open(deviceNumber: int, pHandle: *mut FT_HANDLE) -> FT_STATUS;","highlight_start":63,"highlight_end":72}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: cannot find type `FT_STATUS` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\lib.rs:22:63\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m22\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m fn FT_Open(deviceNumber: int, pHandle: *mut FT_HANDLE) -> FT_STATUS;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m\n\n"} -{"message":"aborting due to 25 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: aborting due to 25 previous errors\u001b[0m\n\n"} -{"message":"For more information about this error, try `rustc --explain E0412`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;15mFor more information about this error, try `rustc --explain E0412`.\u001b[0m\n"} diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-3db108a3bf0a609c/run-build-script-build_script_build-3db108a3bf0a609c b/ftdi-vcp-sys/target/debug/.fingerprint/winapi-3db108a3bf0a609c/run-build-script-build_script_build-3db108a3bf0a609c deleted file mode 100644 index 22f7b1e..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-3db108a3bf0a609c/run-build-script-build_script_build-3db108a3bf0a609c +++ /dev/null @@ -1 +0,0 @@ -b98227698a04294f \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-3db108a3bf0a609c/run-build-script-build_script_build-3db108a3bf0a609c.json b/ftdi-vcp-sys/target/debug/.fingerprint/winapi-3db108a3bf0a609c/run-build-script-build_script_build-3db108a3bf0a609c.json deleted file mode 100644 index a77b548..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-3db108a3bf0a609c/run-build-script-build_script_build-3db108a3bf0a609c.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13421301608916057402,"features":"","target":0,"profile":0,"path":0,"deps":[[2693066915275761720,"build_script_build",false,15338216487991594491]],"local":[{"RerunIfChanged":{"output":"debug\\build\\winapi-3db108a3bf0a609c\\output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"WINAPI_NO_BUNDLED_LIBRARIES","val":null}},{"RerunIfEnvChanged":{"var":"WINAPI_STATIC_NOBUNDLE","val":null}}],"rustflags":[],"metadata":0} \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-b10f48ba92fafd80/dep-lib-winapi-b10f48ba92fafd80 b/ftdi-vcp-sys/target/debug/.fingerprint/winapi-b10f48ba92fafd80/dep-lib-winapi-b10f48ba92fafd80 deleted file mode 100644 index e69de29..0000000 diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-b10f48ba92fafd80/invoked.timestamp b/ftdi-vcp-sys/target/debug/.fingerprint/winapi-b10f48ba92fafd80/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-b10f48ba92fafd80/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-b10f48ba92fafd80/lib-winapi-b10f48ba92fafd80 b/ftdi-vcp-sys/target/debug/.fingerprint/winapi-b10f48ba92fafd80/lib-winapi-b10f48ba92fafd80 deleted file mode 100644 index a42f78d..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-b10f48ba92fafd80/lib-winapi-b10f48ba92fafd80 +++ /dev/null @@ -1 +0,0 @@ -1e8c7bcfed744ec6 \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-b10f48ba92fafd80/lib-winapi-b10f48ba92fafd80.json b/ftdi-vcp-sys/target/debug/.fingerprint/winapi-b10f48ba92fafd80/lib-winapi-b10f48ba92fafd80.json deleted file mode 100644 index c2d2a77..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-b10f48ba92fafd80/lib-winapi-b10f48ba92fafd80.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13421301608916057402,"features":"[\"minwindef\", \"ntdef\"]","target":8642998604196091821,"profile":9935990280773120926,"path":10244067839859063015,"deps":[[2693066915275761720,"build_script_build",false,5704095395557638841]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\winapi-b10f48ba92fafd80\\dep-lib-winapi-b10f48ba92fafd80"}}],"rustflags":[],"metadata":16266002775178098827} \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-def045736e0cffad/build-script-build_script_build-def045736e0cffad b/ftdi-vcp-sys/target/debug/.fingerprint/winapi-def045736e0cffad/build-script-build_script_build-def045736e0cffad deleted file mode 100644 index 074832f..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-def045736e0cffad/build-script-build_script_build-def045736e0cffad +++ /dev/null @@ -1 +0,0 @@ -fb4dc766a14adcd4 \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-def045736e0cffad/build-script-build_script_build-def045736e0cffad.json b/ftdi-vcp-sys/target/debug/.fingerprint/winapi-def045736e0cffad/build-script-build_script_build-def045736e0cffad.json deleted file mode 100644 index e479232..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-def045736e0cffad/build-script-build_script_build-def045736e0cffad.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":13421301608916057402,"features":"[\"minwindef\", \"ntdef\"]","target":10088282520713642473,"profile":9935990280773120926,"path":7842293610570219779,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\winapi-def045736e0cffad\\dep-build-script-build_script_build-def045736e0cffad"}}],"rustflags":[],"metadata":16266002775178098827} \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-def045736e0cffad/dep-build-script-build_script_build-def045736e0cffad b/ftdi-vcp-sys/target/debug/.fingerprint/winapi-def045736e0cffad/dep-build-script-build_script_build-def045736e0cffad deleted file mode 100644 index e69de29..0000000 diff --git a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-def045736e0cffad/invoked.timestamp b/ftdi-vcp-sys/target/debug/.fingerprint/winapi-def045736e0cffad/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/ftdi-vcp-sys/target/debug/.fingerprint/winapi-def045736e0cffad/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-87f54724bfd22a2f/invoked.timestamp b/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-87f54724bfd22a2f/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-87f54724bfd22a2f/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-87f54724bfd22a2f/output b/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-87f54724bfd22a2f/output deleted file mode 100644 index c70a9a6..0000000 --- a/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-87f54724bfd22a2f/output +++ /dev/null @@ -1 +0,0 @@ -cargo:rustc-link-search=native=lib/vcp-2.12.28/amd64 diff --git a/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-87f54724bfd22a2f/root-output b/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-87f54724bfd22a2f/root-output deleted file mode 100644 index 85b0f68..0000000 --- a/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-87f54724bfd22a2f/root-output +++ /dev/null @@ -1 +0,0 @@ -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\build\ftdi-vcp-sys-87f54724bfd22a2f\out \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-87f54724bfd22a2f/stderr b/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-87f54724bfd22a2f/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-8c8ea9f3baf3e349/build-script-build.exe b/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-8c8ea9f3baf3e349/build-script-build.exe deleted file mode 100644 index 5d72d4b..0000000 Binary files a/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-8c8ea9f3baf3e349/build-script-build.exe and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-8c8ea9f3baf3e349/build_script_build-8c8ea9f3baf3e349.d b/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-8c8ea9f3baf3e349/build_script_build-8c8ea9f3baf3e349.d deleted file mode 100644 index 9ba9de5..0000000 --- a/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-8c8ea9f3baf3e349/build_script_build-8c8ea9f3baf3e349.d +++ /dev/null @@ -1,5 +0,0 @@ -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\build\ftdi-vcp-sys-8c8ea9f3baf3e349\build_script_build-8c8ea9f3baf3e349.exe: build.rs - -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\build\ftdi-vcp-sys-8c8ea9f3baf3e349\build_script_build-8c8ea9f3baf3e349.d: build.rs - -build.rs: diff --git a/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-8c8ea9f3baf3e349/build_script_build-8c8ea9f3baf3e349.exe b/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-8c8ea9f3baf3e349/build_script_build-8c8ea9f3baf3e349.exe deleted file mode 100644 index 5d72d4b..0000000 Binary files a/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-8c8ea9f3baf3e349/build_script_build-8c8ea9f3baf3e349.exe and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-8c8ea9f3baf3e349/build_script_build-8c8ea9f3baf3e349.pdb b/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-8c8ea9f3baf3e349/build_script_build-8c8ea9f3baf3e349.pdb deleted file mode 100644 index 86b2b03..0000000 Binary files a/ftdi-vcp-sys/target/debug/build/ftdi-vcp-sys-8c8ea9f3baf3e349/build_script_build-8c8ea9f3baf3e349.pdb and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/build/winapi-3db108a3bf0a609c/invoked.timestamp b/ftdi-vcp-sys/target/debug/build/winapi-3db108a3bf0a609c/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/ftdi-vcp-sys/target/debug/build/winapi-3db108a3bf0a609c/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/build/winapi-3db108a3bf0a609c/output b/ftdi-vcp-sys/target/debug/build/winapi-3db108a3bf0a609c/output deleted file mode 100644 index ecaff39..0000000 --- a/ftdi-vcp-sys/target/debug/build/winapi-3db108a3bf0a609c/output +++ /dev/null @@ -1,5 +0,0 @@ -cargo:rerun-if-changed=build.rs -cargo:rerun-if-env-changed=WINAPI_NO_BUNDLED_LIBRARIES -cargo:rerun-if-env-changed=WINAPI_STATIC_NOBUNDLE -cargo:rustc-cfg=feature="basetsd" -cargo:rustc-cfg=feature="guiddef" diff --git a/ftdi-vcp-sys/target/debug/build/winapi-3db108a3bf0a609c/root-output b/ftdi-vcp-sys/target/debug/build/winapi-3db108a3bf0a609c/root-output deleted file mode 100644 index fe21b92..0000000 --- a/ftdi-vcp-sys/target/debug/build/winapi-3db108a3bf0a609c/root-output +++ /dev/null @@ -1 +0,0 @@ -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\build\winapi-3db108a3bf0a609c\out \ No newline at end of file diff --git a/ftdi-vcp-sys/target/debug/build/winapi-3db108a3bf0a609c/stderr b/ftdi-vcp-sys/target/debug/build/winapi-3db108a3bf0a609c/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/ftdi-vcp-sys/target/debug/build/winapi-def045736e0cffad/build-script-build.exe b/ftdi-vcp-sys/target/debug/build/winapi-def045736e0cffad/build-script-build.exe deleted file mode 100644 index 8f76279..0000000 Binary files a/ftdi-vcp-sys/target/debug/build/winapi-def045736e0cffad/build-script-build.exe and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/build/winapi-def045736e0cffad/build_script_build-def045736e0cffad.d b/ftdi-vcp-sys/target/debug/build/winapi-def045736e0cffad/build_script_build-def045736e0cffad.d deleted file mode 100644 index 3d54d6b..0000000 --- a/ftdi-vcp-sys/target/debug/build/winapi-def045736e0cffad/build_script_build-def045736e0cffad.d +++ /dev/null @@ -1,5 +0,0 @@ -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\build\winapi-def045736e0cffad\build_script_build-def045736e0cffad.exe: C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\build.rs - -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\build\winapi-def045736e0cffad\build_script_build-def045736e0cffad.d: C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\build.rs - -C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\build.rs: diff --git a/ftdi-vcp-sys/target/debug/build/winapi-def045736e0cffad/build_script_build-def045736e0cffad.exe b/ftdi-vcp-sys/target/debug/build/winapi-def045736e0cffad/build_script_build-def045736e0cffad.exe deleted file mode 100644 index 8f76279..0000000 Binary files a/ftdi-vcp-sys/target/debug/build/winapi-def045736e0cffad/build_script_build-def045736e0cffad.exe and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/build/winapi-def045736e0cffad/build_script_build-def045736e0cffad.pdb b/ftdi-vcp-sys/target/debug/build/winapi-def045736e0cffad/build_script_build-def045736e0cffad.pdb deleted file mode 100644 index c214b9b..0000000 Binary files a/ftdi-vcp-sys/target/debug/build/winapi-def045736e0cffad/build_script_build-def045736e0cffad.pdb and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-58b72ef14df83c34.d b/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-58b72ef14df83c34.d deleted file mode 100644 index 35ab9db..0000000 --- a/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-58b72ef14df83c34.d +++ /dev/null @@ -1,5 +0,0 @@ -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\deps\ftdi_vcp_sys-58b72ef14df83c34.exe: src\lib.rs - -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\deps\ftdi_vcp_sys-58b72ef14df83c34.d: src\lib.rs - -src\lib.rs: diff --git a/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-58b72ef14df83c34.exe b/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-58b72ef14df83c34.exe deleted file mode 100644 index 1c27083..0000000 Binary files a/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-58b72ef14df83c34.exe and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-58b72ef14df83c34.pdb b/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-58b72ef14df83c34.pdb deleted file mode 100644 index b0561b9..0000000 Binary files a/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-58b72ef14df83c34.pdb and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-7a2bd70881ee01b2.d b/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-7a2bd70881ee01b2.d deleted file mode 100644 index 3321283..0000000 --- a/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-7a2bd70881ee01b2.d +++ /dev/null @@ -1,5 +0,0 @@ -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\deps\ftdi_vcp_sys-7a2bd70881ee01b2.exe: src\lib.rs - -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\deps\ftdi_vcp_sys-7a2bd70881ee01b2.d: src\lib.rs - -src\lib.rs: diff --git a/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-7dfd3debbf10b458.d b/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-7dfd3debbf10b458.d deleted file mode 100644 index 37a9e39..0000000 --- a/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-7dfd3debbf10b458.d +++ /dev/null @@ -1,7 +0,0 @@ -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\deps\ftdi_vcp_sys-7dfd3debbf10b458.rmeta: src\lib.rs - -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\deps\libftdi_vcp_sys-7dfd3debbf10b458.rlib: src\lib.rs - -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\deps\ftdi_vcp_sys-7dfd3debbf10b458.d: src\lib.rs - -src\lib.rs: diff --git a/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-b8e3bca4d18f1d2b.d b/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-b8e3bca4d18f1d2b.d deleted file mode 100644 index 0d5d7d6..0000000 --- a/ftdi-vcp-sys/target/debug/deps/ftdi_vcp_sys-b8e3bca4d18f1d2b.d +++ /dev/null @@ -1,7 +0,0 @@ -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\deps\ftdi_vcp_sys-b8e3bca4d18f1d2b.rmeta: src\lib.rs - -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\deps\libftdi_vcp_sys-b8e3bca4d18f1d2b.rlib: src\lib.rs - -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\deps\ftdi_vcp_sys-b8e3bca4d18f1d2b.d: src\lib.rs - -src\lib.rs: diff --git a/ftdi-vcp-sys/target/debug/deps/libftdi_vcp_sys-7dfd3debbf10b458.rlib b/ftdi-vcp-sys/target/debug/deps/libftdi_vcp_sys-7dfd3debbf10b458.rlib deleted file mode 100644 index 7bb1f71..0000000 Binary files a/ftdi-vcp-sys/target/debug/deps/libftdi_vcp_sys-7dfd3debbf10b458.rlib and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/deps/libftdi_vcp_sys-7dfd3debbf10b458.rmeta b/ftdi-vcp-sys/target/debug/deps/libftdi_vcp_sys-7dfd3debbf10b458.rmeta deleted file mode 100644 index ff7723c..0000000 Binary files a/ftdi-vcp-sys/target/debug/deps/libftdi_vcp_sys-7dfd3debbf10b458.rmeta and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/deps/libwinapi-b10f48ba92fafd80.rlib b/ftdi-vcp-sys/target/debug/deps/libwinapi-b10f48ba92fafd80.rlib deleted file mode 100644 index 7da731a..0000000 Binary files a/ftdi-vcp-sys/target/debug/deps/libwinapi-b10f48ba92fafd80.rlib and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/deps/libwinapi-b10f48ba92fafd80.rmeta b/ftdi-vcp-sys/target/debug/deps/libwinapi-b10f48ba92fafd80.rmeta deleted file mode 100644 index fc49e01..0000000 Binary files a/ftdi-vcp-sys/target/debug/deps/libwinapi-b10f48ba92fafd80.rmeta and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/deps/winapi-b10f48ba92fafd80.d b/ftdi-vcp-sys/target/debug/deps/winapi-b10f48ba92fafd80.d deleted file mode 100644 index b4ffb9c..0000000 --- a/ftdi-vcp-sys/target/debug/deps/winapi-b10f48ba92fafd80.d +++ /dev/null @@ -1,18 +0,0 @@ -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\deps\winapi-b10f48ba92fafd80.rmeta: C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\lib.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\macros.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\km\mod.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\mod.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\basetsd.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\guiddef.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\minwindef.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\ntdef.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\um\mod.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\um\gl\mod.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\vc\mod.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\winrt\mod.rs - -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\deps\libwinapi-b10f48ba92fafd80.rlib: C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\lib.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\macros.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\km\mod.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\mod.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\basetsd.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\guiddef.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\minwindef.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\ntdef.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\um\mod.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\um\gl\mod.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\vc\mod.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\winrt\mod.rs - -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\deps\winapi-b10f48ba92fafd80.d: C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\lib.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\macros.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\km\mod.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\mod.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\basetsd.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\guiddef.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\minwindef.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\ntdef.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\um\mod.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\um\gl\mod.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\vc\mod.rs C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\winrt\mod.rs - -C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\lib.rs: -C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\macros.rs: -C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\km\mod.rs: -C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\mod.rs: -C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\basetsd.rs: -C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\guiddef.rs: -C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\minwindef.rs: -C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\shared\ntdef.rs: -C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\um\mod.rs: -C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\um\gl\mod.rs: -C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\vc\mod.rs: -C:\Users\smcro\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.8\src\winrt\mod.rs: diff --git a/ftdi-vcp-sys/target/debug/ftdi_vcp_sys-58b72ef14df83c34.d b/ftdi-vcp-sys/target/debug/ftdi_vcp_sys-58b72ef14df83c34.d deleted file mode 100644 index f07c295..0000000 --- a/ftdi-vcp-sys/target/debug/ftdi_vcp_sys-58b72ef14df83c34.d +++ /dev/null @@ -1 +0,0 @@ -D:\Code\ftdi-prog\ftdi-vcp-sys\target\debug\ftdi_vcp_sys-58b72ef14df83c34.exe: D:\Code\ftdi-prog\ftdi-vcp-sys\build.rs D:\Code\ftdi-prog\ftdi-vcp-sys\src\lib.rs diff --git a/ftdi-vcp-sys/target/debug/ftdi_vcp_sys-58b72ef14df83c34.exe b/ftdi-vcp-sys/target/debug/ftdi_vcp_sys-58b72ef14df83c34.exe deleted file mode 100644 index 1c27083..0000000 Binary files a/ftdi-vcp-sys/target/debug/ftdi_vcp_sys-58b72ef14df83c34.exe and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/16z2e6hinlq85cwd.o b/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/16z2e6hinlq85cwd.o deleted file mode 100644 index acd6629..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/16z2e6hinlq85cwd.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/36x0umxd9oc8mt4h.o b/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/36x0umxd9oc8mt4h.o deleted file mode 100644 index f2f2ff9..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/36x0umxd9oc8mt4h.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/37xi5egzulgkhvdo.o b/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/37xi5egzulgkhvdo.o deleted file mode 100644 index dab57d3..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/37xi5egzulgkhvdo.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/3bh9nvcxe4gb8v7p.o b/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/3bh9nvcxe4gb8v7p.o deleted file mode 100644 index d21a4c0..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/3bh9nvcxe4gb8v7p.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/3q9afnaoahvxfjz8.o b/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/3q9afnaoahvxfjz8.o deleted file mode 100644 index 8903646..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/3q9afnaoahvxfjz8.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/dep-graph.bin b/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/dep-graph.bin deleted file mode 100644 index d940cca..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/dep-graph.bin and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/mtt4qo2inrdkp08.o b/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/mtt4qo2inrdkp08.o deleted file mode 100644 index d1aa2a5..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/mtt4qo2inrdkp08.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/query-cache.bin b/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/query-cache.bin deleted file mode 100644 index eba8ce7..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/query-cache.bin and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/work-products.bin b/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/work-products.bin deleted file mode 100644 index 450fb5f..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/work-products.bin and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/ytpb787242uq45v.o b/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/ytpb787242uq45v.o deleted file mode 100644 index a44b5c2..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj-1yv4vztghaor2/ytpb787242uq45v.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj.lock b/ftdi-vcp-sys/target/debug/incremental/build_script_build-2k6bl7w68n9rs/s-fl9frqsurg-fcmzkj.lock deleted file mode 100644 index e69de29..0000000 diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/11eh1qg5g5rbd1af.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/11eh1qg5g5rbd1af.o deleted file mode 100644 index 7dbce84..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/11eh1qg5g5rbd1af.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/13wvx685rowstd16.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/13wvx685rowstd16.o deleted file mode 100644 index 1715846..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/13wvx685rowstd16.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1alkr6dzeol45cgr.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1alkr6dzeol45cgr.o deleted file mode 100644 index eedc3f4..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1alkr6dzeol45cgr.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1apb4cit9dp1gdqm.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1apb4cit9dp1gdqm.o deleted file mode 100644 index aa9a10e..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1apb4cit9dp1gdqm.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1eun5qwlcpsc5szz.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1eun5qwlcpsc5szz.o deleted file mode 100644 index f121be1..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1eun5qwlcpsc5szz.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1io8ix5a8jelgc24.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1io8ix5a8jelgc24.o deleted file mode 100644 index 6fadf90..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1io8ix5a8jelgc24.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1ki444bid1lg6pvb.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1ki444bid1lg6pvb.o deleted file mode 100644 index 85d5ca9..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1ki444bid1lg6pvb.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1n8pfmu4t9c3xeb3.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1n8pfmu4t9c3xeb3.o deleted file mode 100644 index 0a0c919..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1n8pfmu4t9c3xeb3.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1s14a7i95tm1hp9v.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1s14a7i95tm1hp9v.o deleted file mode 100644 index 900d74a..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1s14a7i95tm1hp9v.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1v2x342oskv1bpza.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1v2x342oskv1bpza.o deleted file mode 100644 index e42e555..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1v2x342oskv1bpza.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1v5fml7v1xsrw43t.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1v5fml7v1xsrw43t.o deleted file mode 100644 index 9e00152..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1v5fml7v1xsrw43t.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1zxygibt1c1t1dgn.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1zxygibt1c1t1dgn.o deleted file mode 100644 index f040722..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/1zxygibt1c1t1dgn.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/235ydm6jr20truot.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/235ydm6jr20truot.o deleted file mode 100644 index 99bbf6d..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/235ydm6jr20truot.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/25jojdbn87ao844o.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/25jojdbn87ao844o.o deleted file mode 100644 index 13b8aab..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/25jojdbn87ao844o.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2h76jt0aw5ukh6n6.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2h76jt0aw5ukh6n6.o deleted file mode 100644 index 63d9dd5..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2h76jt0aw5ukh6n6.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2iduf8hlwi0wwb6w.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2iduf8hlwi0wwb6w.o deleted file mode 100644 index 00adebf..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2iduf8hlwi0wwb6w.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2kwsapsfyoglr5s2.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2kwsapsfyoglr5s2.o deleted file mode 100644 index ccb5299..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2kwsapsfyoglr5s2.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2mjit1m55yjq9r5k.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2mjit1m55yjq9r5k.o deleted file mode 100644 index 02b2c53..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2mjit1m55yjq9r5k.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2qk2z9ka2psdql43.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2qk2z9ka2psdql43.o deleted file mode 100644 index 02b34b5..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2qk2z9ka2psdql43.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2v5kka6owr20vjwl.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2v5kka6owr20vjwl.o deleted file mode 100644 index 344a479..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2v5kka6owr20vjwl.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2xn1zpkeabfeiasp.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2xn1zpkeabfeiasp.o deleted file mode 100644 index 51618fb..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2xn1zpkeabfeiasp.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2xss7d523fxma3r9.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2xss7d523fxma3r9.o deleted file mode 100644 index 66580e8..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/2xss7d523fxma3r9.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/31pab2fuqqbdcdqb.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/31pab2fuqqbdcdqb.o deleted file mode 100644 index fdeb50b..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/31pab2fuqqbdcdqb.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/31sqsxt8og1pnalg.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/31sqsxt8og1pnalg.o deleted file mode 100644 index 337b538..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/31sqsxt8og1pnalg.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/34hre9vmmc6w5gi9.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/34hre9vmmc6w5gi9.o deleted file mode 100644 index 4446802..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/34hre9vmmc6w5gi9.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3j3cvfbrhfiyukse.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3j3cvfbrhfiyukse.o deleted file mode 100644 index 3ab714b..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3j3cvfbrhfiyukse.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3lpclx8h9b8vgxx.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3lpclx8h9b8vgxx.o deleted file mode 100644 index 8aa4c0b..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3lpclx8h9b8vgxx.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3lzlg97e2xyfim4a.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3lzlg97e2xyfim4a.o deleted file mode 100644 index f1589ba..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3lzlg97e2xyfim4a.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3nb70toif2px44d4.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3nb70toif2px44d4.o deleted file mode 100644 index 65e47c8..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3nb70toif2px44d4.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3tcoiadxfrsgrt6m.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3tcoiadxfrsgrt6m.o deleted file mode 100644 index 570dd29..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3tcoiadxfrsgrt6m.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3unakskemhlfgsy6.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3unakskemhlfgsy6.o deleted file mode 100644 index 74b8ee5..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/3unakskemhlfgsy6.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/43nnoesmw25tvio0.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/43nnoesmw25tvio0.o deleted file mode 100644 index 363a3d2..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/43nnoesmw25tvio0.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/4aczk5plxdzfy4bq.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/4aczk5plxdzfy4bq.o deleted file mode 100644 index 97f1f73..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/4aczk5plxdzfy4bq.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/4qgv39cmll0e9mcc.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/4qgv39cmll0e9mcc.o deleted file mode 100644 index b43c3b3..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/4qgv39cmll0e9mcc.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/4thbnyel4az2xy2b.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/4thbnyel4az2xy2b.o deleted file mode 100644 index d7e14e1..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/4thbnyel4az2xy2b.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/4xy1snqb7jaex8lo.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/4xy1snqb7jaex8lo.o deleted file mode 100644 index a430821..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/4xy1snqb7jaex8lo.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/4yjrd7nwggpw29gp.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/4yjrd7nwggpw29gp.o deleted file mode 100644 index ff87886..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/4yjrd7nwggpw29gp.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/52a6qfruixgnrvl1.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/52a6qfruixgnrvl1.o deleted file mode 100644 index 109fbf2..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/52a6qfruixgnrvl1.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/54024zpm2ll6b1z7.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/54024zpm2ll6b1z7.o deleted file mode 100644 index d7ee5af..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/54024zpm2ll6b1z7.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/54s5jvxjrl051nbz.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/54s5jvxjrl051nbz.o deleted file mode 100644 index 3e95cf0..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/54s5jvxjrl051nbz.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/5g7cbqlrjdlxvuyj.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/5g7cbqlrjdlxvuyj.o deleted file mode 100644 index 4e68307..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/5g7cbqlrjdlxvuyj.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/b1jgpjbx31g13vf.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/b1jgpjbx31g13vf.o deleted file mode 100644 index 21e8b70..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/b1jgpjbx31g13vf.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/dep-graph.bin b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/dep-graph.bin deleted file mode 100644 index 36fb529..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/dep-graph.bin and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/gg6tmkdsjjbvypa.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/gg6tmkdsjjbvypa.o deleted file mode 100644 index 2db2ff9..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/gg6tmkdsjjbvypa.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/h5yz7neuffzmrpd.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/h5yz7neuffzmrpd.o deleted file mode 100644 index 345a67c..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/h5yz7neuffzmrpd.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/i060eti59n6px4j.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/i060eti59n6px4j.o deleted file mode 100644 index fd6505c..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/i060eti59n6px4j.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/query-cache.bin b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/query-cache.bin deleted file mode 100644 index 475fd55..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/query-cache.bin and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/t4zmmbiidape16v.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/t4zmmbiidape16v.o deleted file mode 100644 index 048b668..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/t4zmmbiidape16v.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/vl8n9ht3erml26b.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/vl8n9ht3erml26b.o deleted file mode 100644 index 3debe92..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/vl8n9ht3erml26b.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/work-products.bin b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/work-products.bin deleted file mode 100644 index 881165f..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9-3k8f0j7s7or82/work-products.bin and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9.lock b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-10ou7y3v71uhx/s-fl9gzzne4f-10gawk9.lock deleted file mode 100644 index e69de29..0000000 diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/165yus87nhyw9vr7.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/165yus87nhyw9vr7.bc.z deleted file mode 100644 index 1bb9f32..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/165yus87nhyw9vr7.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/165yus87nhyw9vr7.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/165yus87nhyw9vr7.o deleted file mode 100644 index 78580ec..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/165yus87nhyw9vr7.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1aj6nr8fj3lkuy1n.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1aj6nr8fj3lkuy1n.bc.z deleted file mode 100644 index 2da055a..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1aj6nr8fj3lkuy1n.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1aj6nr8fj3lkuy1n.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1aj6nr8fj3lkuy1n.o deleted file mode 100644 index 7627b1e..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1aj6nr8fj3lkuy1n.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1ajkr2ozeo9y2rk2.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1ajkr2ozeo9y2rk2.bc.z deleted file mode 100644 index 3017719..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1ajkr2ozeo9y2rk2.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1ajkr2ozeo9y2rk2.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1ajkr2ozeo9y2rk2.o deleted file mode 100644 index b62cee3..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1ajkr2ozeo9y2rk2.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1py6ozh4jdhnj5iw.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1py6ozh4jdhnj5iw.bc.z deleted file mode 100644 index df457f2..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1py6ozh4jdhnj5iw.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1py6ozh4jdhnj5iw.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1py6ozh4jdhnj5iw.o deleted file mode 100644 index 7f032e3..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/1py6ozh4jdhnj5iw.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/22lkwidmhuky2jmd.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/22lkwidmhuky2jmd.bc.z deleted file mode 100644 index bfc17f0..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/22lkwidmhuky2jmd.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/22lkwidmhuky2jmd.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/22lkwidmhuky2jmd.o deleted file mode 100644 index a63ae17..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/22lkwidmhuky2jmd.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2dow7k4nn3okrif6.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2dow7k4nn3okrif6.bc.z deleted file mode 100644 index 3123829..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2dow7k4nn3okrif6.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2dow7k4nn3okrif6.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2dow7k4nn3okrif6.o deleted file mode 100644 index c72a3f5..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2dow7k4nn3okrif6.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2pg5yu3w6r6kbcea.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2pg5yu3w6r6kbcea.bc.z deleted file mode 100644 index bc9f840..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2pg5yu3w6r6kbcea.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2pg5yu3w6r6kbcea.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2pg5yu3w6r6kbcea.o deleted file mode 100644 index b4321c3..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2pg5yu3w6r6kbcea.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2qn1gk4b6k8byx6f.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2qn1gk4b6k8byx6f.bc.z deleted file mode 100644 index 7c7fb90..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2qn1gk4b6k8byx6f.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2qn1gk4b6k8byx6f.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2qn1gk4b6k8byx6f.o deleted file mode 100644 index c17a7b2..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2qn1gk4b6k8byx6f.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2yc9tozv5r4yf5jk.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2yc9tozv5r4yf5jk.bc.z deleted file mode 100644 index ef02a27..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2yc9tozv5r4yf5jk.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2yc9tozv5r4yf5jk.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2yc9tozv5r4yf5jk.o deleted file mode 100644 index aeac63d..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/2yc9tozv5r4yf5jk.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/34dwybhww0m5pfr4.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/34dwybhww0m5pfr4.bc.z deleted file mode 100644 index 8a69c35..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/34dwybhww0m5pfr4.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/34dwybhww0m5pfr4.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/34dwybhww0m5pfr4.o deleted file mode 100644 index 3dd643d..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/34dwybhww0m5pfr4.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/35qm49z5c46q2qkc.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/35qm49z5c46q2qkc.bc.z deleted file mode 100644 index aa7538c..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/35qm49z5c46q2qkc.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/35qm49z5c46q2qkc.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/35qm49z5c46q2qkc.o deleted file mode 100644 index ecb9592..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/35qm49z5c46q2qkc.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3dywo5qz6jqhr74v.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3dywo5qz6jqhr74v.bc.z deleted file mode 100644 index 63fe7f2..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3dywo5qz6jqhr74v.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3dywo5qz6jqhr74v.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3dywo5qz6jqhr74v.o deleted file mode 100644 index 1c9d561..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3dywo5qz6jqhr74v.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3o1ntkwffou1a2xy.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3o1ntkwffou1a2xy.bc.z deleted file mode 100644 index be63b32..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3o1ntkwffou1a2xy.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3o1ntkwffou1a2xy.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3o1ntkwffou1a2xy.o deleted file mode 100644 index cdc28d3..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3o1ntkwffou1a2xy.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3xrwdb8oeuin2v7r.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3xrwdb8oeuin2v7r.bc.z deleted file mode 100644 index 1e3c264..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3xrwdb8oeuin2v7r.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3xrwdb8oeuin2v7r.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3xrwdb8oeuin2v7r.o deleted file mode 100644 index a13fcbf..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/3xrwdb8oeuin2v7r.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4447c8satgbbgc9t.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4447c8satgbbgc9t.bc.z deleted file mode 100644 index 129b02c..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4447c8satgbbgc9t.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4447c8satgbbgc9t.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4447c8satgbbgc9t.o deleted file mode 100644 index 503889b..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4447c8satgbbgc9t.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/45yc4i97toyfmhvw.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/45yc4i97toyfmhvw.bc.z deleted file mode 100644 index 9601b19..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/45yc4i97toyfmhvw.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/45yc4i97toyfmhvw.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/45yc4i97toyfmhvw.o deleted file mode 100644 index bafd163..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/45yc4i97toyfmhvw.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/48niksp2alp362l4.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/48niksp2alp362l4.bc.z deleted file mode 100644 index ce04071..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/48niksp2alp362l4.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/48niksp2alp362l4.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/48niksp2alp362l4.o deleted file mode 100644 index f8400b7..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/48niksp2alp362l4.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4avev0twq7561scw.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4avev0twq7561scw.bc.z deleted file mode 100644 index 561b81b..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4avev0twq7561scw.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4avev0twq7561scw.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4avev0twq7561scw.o deleted file mode 100644 index b85119a..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4avev0twq7561scw.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4fxg8a7ulv28swdo.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4fxg8a7ulv28swdo.bc.z deleted file mode 100644 index e62db2f..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4fxg8a7ulv28swdo.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4fxg8a7ulv28swdo.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4fxg8a7ulv28swdo.o deleted file mode 100644 index 445e7d5..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4fxg8a7ulv28swdo.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4v0cfov2um57bfcg.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4v0cfov2um57bfcg.bc.z deleted file mode 100644 index 92c4afc..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4v0cfov2um57bfcg.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4v0cfov2um57bfcg.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4v0cfov2um57bfcg.o deleted file mode 100644 index 43c697e..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4v0cfov2um57bfcg.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4vu7v2o0nahrr4vg.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4vu7v2o0nahrr4vg.bc.z deleted file mode 100644 index c29f702..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4vu7v2o0nahrr4vg.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4vu7v2o0nahrr4vg.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4vu7v2o0nahrr4vg.o deleted file mode 100644 index e4256e0..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/4vu7v2o0nahrr4vg.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/51ju1ps16hci7dxi.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/51ju1ps16hci7dxi.bc.z deleted file mode 100644 index 37d5251..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/51ju1ps16hci7dxi.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/51ju1ps16hci7dxi.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/51ju1ps16hci7dxi.o deleted file mode 100644 index d1f49ad..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/51ju1ps16hci7dxi.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/51rjeaz3x3a41brl.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/51rjeaz3x3a41brl.bc.z deleted file mode 100644 index 1f481c6..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/51rjeaz3x3a41brl.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/51rjeaz3x3a41brl.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/51rjeaz3x3a41brl.o deleted file mode 100644 index 4f710df..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/51rjeaz3x3a41brl.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/897dv0376c3vjj1.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/897dv0376c3vjj1.bc.z deleted file mode 100644 index 85cb388..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/897dv0376c3vjj1.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/897dv0376c3vjj1.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/897dv0376c3vjj1.o deleted file mode 100644 index 5876746..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/897dv0376c3vjj1.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/8oaa3aty1158fvf.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/8oaa3aty1158fvf.bc.z deleted file mode 100644 index 7a6047f..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/8oaa3aty1158fvf.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/8oaa3aty1158fvf.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/8oaa3aty1158fvf.o deleted file mode 100644 index e18014f..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/8oaa3aty1158fvf.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/dep-graph.bin b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/dep-graph.bin deleted file mode 100644 index 3362f52..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/dep-graph.bin and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/k7gkwjeb0cp6ner.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/k7gkwjeb0cp6ner.bc.z deleted file mode 100644 index 60b4dd1..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/k7gkwjeb0cp6ner.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/k7gkwjeb0cp6ner.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/k7gkwjeb0cp6ner.o deleted file mode 100644 index 969c691..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/k7gkwjeb0cp6ner.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/lfi9vfu8906fqzh.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/lfi9vfu8906fqzh.bc.z deleted file mode 100644 index 7f0e6fb..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/lfi9vfu8906fqzh.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/lfi9vfu8906fqzh.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/lfi9vfu8906fqzh.o deleted file mode 100644 index 149d54f..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/lfi9vfu8906fqzh.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/m4rngmnl3u2elki.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/m4rngmnl3u2elki.bc.z deleted file mode 100644 index 014acb7..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/m4rngmnl3u2elki.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/m4rngmnl3u2elki.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/m4rngmnl3u2elki.o deleted file mode 100644 index bdee7b1..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/m4rngmnl3u2elki.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/p0gfzyzwbzmwt2i.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/p0gfzyzwbzmwt2i.bc.z deleted file mode 100644 index 255d96a..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/p0gfzyzwbzmwt2i.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/p0gfzyzwbzmwt2i.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/p0gfzyzwbzmwt2i.o deleted file mode 100644 index 0d67f7e..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/p0gfzyzwbzmwt2i.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/query-cache.bin b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/query-cache.bin deleted file mode 100644 index 1d371d7..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/query-cache.bin and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/uvq5y7ukilbnziq.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/uvq5y7ukilbnziq.bc.z deleted file mode 100644 index 2c438b3..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/uvq5y7ukilbnziq.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/uvq5y7ukilbnziq.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/uvq5y7ukilbnziq.o deleted file mode 100644 index f10c284..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/uvq5y7ukilbnziq.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/work-products.bin b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/work-products.bin deleted file mode 100644 index b7cdfba..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/work-products.bin and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/za2wfxs7rqzaqpg.bc.z b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/za2wfxs7rqzaqpg.bc.z deleted file mode 100644 index c35dbbb..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/za2wfxs7rqzaqpg.bc.z and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/za2wfxs7rqzaqpg.o b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/za2wfxs7rqzaqpg.o deleted file mode 100644 index 9eb0264..0000000 Binary files a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f-1rovr4zecqvpx/za2wfxs7rqzaqpg.o and /dev/null differ diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f.lock b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-35gn21bvv0c0p/s-fl9gzzne4f-llvk3f.lock deleted file mode 100644 index e69de29..0000000 diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-706ouokfazt0/s-fl9fpw9me5-14y5el7.lock b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-706ouokfazt0/s-fl9fpw9me5-14y5el7.lock deleted file mode 100644 index e69de29..0000000 diff --git a/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-wbhbgslg7tfz/s-fl9fpwa27q-7iod0e.lock b/ftdi-vcp-sys/target/debug/incremental/ftdi_vcp_sys-wbhbgslg7tfz/s-fl9fpwa27q-7iod0e.lock deleted file mode 100644 index e69de29..0000000 diff --git a/src/main.rs b/src/main.rs index a40f88b..788553e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -6,7 +6,9 @@ #define FT_LIST_MASK (FT_LIST_NUMBER_ONLY|FT_LIST_BY_INDEX|FT_LIST_ALL) */ - +use ftdi_vcp_rs::VCP; fn main() { + let mut vcp = VCP::new_from_name("iCEBreaker V1.0e A").expect("couldn't open vcp"); + println!("VCP COM{}:", vcp.com_port().expect("couldn't get com port")); }