Skip to content

Instantly share code, notes, and snippets.

@dignifiedquire
Created February 8, 2017 15:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dignifiedquire/68f882ff94d63e195dbda124944d9d00 to your computer and use it in GitHub Desktop.
Save dignifiedquire/68f882ff94d63e195dbda124944d9d00 to your computer and use it in GitHub Desktop.
RUST_BACKTRACE=1 cargo +stable test
Updating git repository `https://github.com/flier/rust-bindgen`
Compiling bindgen v0.21.2 (https://github.com/flier/rust-bindgen?branch=fix-493#e08072a1)
Compiling librtcd v0.1.0 (file:///Users/dignifiedquire/opensource/webrtc/librtcd.rs)
error[E0428]: a type named `const_iterator` has already been defined in this module
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:47050:5
|
47048 | pub type const_iterator =
| _____- starting here...
47049 | | root::std::__wrap_iter<*const ::std::os::raw::c_char>;
| |______________________________________________________________- ...ending here: previous definition of `const_iterator` here
47050 | pub type const_iterator = root::std::__wrap_iter<*const u16>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ already defined
error[E0428]: a type named `const_iterator` has already been defined in this module
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:47050:5
|
47048 | pub type const_iterator =
| _____- starting here...
47049 | | root::std::__wrap_iter<*const ::std::os::raw::c_char>;
| |______________________________________________________________- ...ending here: previous definition of `const_iterator` here
47050 | pub type const_iterator = root::std::__wrap_iter<*const u16>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ already defined
error[E0432]: unresolved import `self::super::super::super::super::root`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:6473:17
|
6473 | use self::super::super::super::super::root;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::super::root`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:7070:17
|
7070 | use self::super::super::super::super::root;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::super::root`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:7244:17
|
7244 | use self::super::super::super::super::root;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::root::std::ios_base_seekdir`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:7784:17
|
7784 | pub use self::super::super::super::root::std::ios_base_seekdir as
| _________________^ starting here...
7785 | | ios_base_seek_dir;
| |_________________________________^ ...ending here: There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::super::root`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:8878:17
|
8878 | use self::super::super::super::super::root;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::super::root`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9133:17
|
9133 | use self::super::super::super::super::root;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::super::root`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9802:17
|
9802 | use self::super::super::super::super::root;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::super::root`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:10783:17
|
10783 | use self::super::super::super::super::root;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::super::root`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:10837:17
|
10837 | use self::super::super::super::super::root;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::root::std::time_base_dateorder`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13423:17
|
13423 | pub use self::super::super::super::root::std::time_base_dateorder as
| _________________^ starting here...
13424 | | time_get_dateorder;
| |__________________________________^ ...ending here: There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::root::std::time_base_dateorder`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13533:17
|
13533 | pub use self::super::super::super::root::std::time_base_dateorder as
| _________________^ starting here...
13534 | | time_get_byname_dateorder;
| |_________________________________________^ ...ending here: There are too many initial `super`s.
error[E0412]: type name `_Tp` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:6053:31
|
6053 | pub static value: _Tp;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_Tp` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Indx` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:7308:60
|
7308 | pub type tuple_base<_Tp> = root::std::__tuple_impl<_Indx, _Tp>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Indx` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Atomic` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:8965:23
|
8965 | pub __a_: _Atomic(bool),
| ^^^^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Atomic` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Ptr` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9125:68
|
9125 | pub type __rebind_pointer_type = root::std::pointer_traits<_Ptr>;
| ^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Ptr` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Tp` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9287:39
|
9287 | root::std::__pointer_type<_Tp, _Dp>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_Tp` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Dp` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9287:44
|
9287 | root::std::__pointer_type<_Tp, _Dp>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_Dp` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_T1` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9556:55
|
9556 | pub __data_: root::std::__compressed_pair<_T1, _T2>,
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_T1` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_T2` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9556:60
|
9556 | pub __data_: root::std::__compressed_pair<_T1, _T2>,
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_T2` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Tp` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:10899:48
|
10899 | pub type __bind__Fd = root::std::decay<_Tp>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_Tp` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:11533:46
|
11533 | root::std::__rebind_alloc_helper<_Traits, _Tp>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:11539:46
|
11539 | root::std::__rebind_alloc_helper<_Traits, _Tp>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Alloc` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:11541:41
|
11541 | root::std::allocator_traits<_Alloc>;
| ^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Alloc` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:11962:64
|
11962 | pub static npos: root::std::basic_string_size_type<_Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12036:46
|
12036 | root::std::__rebind_alloc_helper<_Traits, _Tp>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_From` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12050:41
|
12050 | root::std::__rebind_pointer<_From, _To>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_From` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_To` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12050:48
|
12050 | root::std::__rebind_pointer<_From, _To>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_To` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Ptr` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12066:69
|
12066 | pub type __tree_iterator___node = root::std::pointer_traits<_Ptr>;
| ^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Ptr` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_From` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12076:41
|
12076 | root::std::__rebind_pointer<_From, _To>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_From` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_To` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12076:48
|
12076 | root::std::__rebind_pointer<_From, _To>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_To` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Ptr` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12087:39
|
12087 | root::std::pointer_traits<_Ptr>;
| ^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Ptr` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_From` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12097:41
|
12097 | root::std::__rebind_pointer<_From, _To>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_From` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_To` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12097:48
|
12097 | root::std::__rebind_pointer<_From, _To>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_To` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_From` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12101:41
|
12101 | root::std::__rebind_pointer<_From, _To>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_From` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_To` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12101:48
|
12101 | root::std::__rebind_pointer<_From, _To>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_To` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Pointer` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12150:51
|
12150 | pub _base: root::std::__tree_end_node<_Pointer>,
| ^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Pointer` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_From` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12157:41
|
12157 | root::std::__rebind_pointer<_From, _To>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_From` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_To` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12157:48
|
12157 | root::std::__rebind_pointer<_From, _To>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_To` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_From` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12159:41
|
12159 | root::std::__rebind_pointer<_From, _To>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_From` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_To` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12159:48
|
12159 | root::std::__rebind_pointer<_From, _To>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_To` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Tp` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12178:50
|
12178 | root::std::__extract_key_value_types<_Tp>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_Tp` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Tp` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12180:50
|
12180 | root::std::__extract_key_value_types<_Tp>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_Tp` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_From` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12191:41
|
12191 | root::std::__rebind_pointer<_From, _To>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_From` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_To` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12191:48
|
12191 | root::std::__rebind_pointer<_From, _To>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_To` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Tp` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12202:50
|
12202 | root::std::__extract_key_value_types<_Tp>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_Tp` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Tp` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12204:50
|
12204 | root::std::__extract_key_value_types<_Tp>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_Tp` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_From` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12215:41
|
12215 | root::std::__rebind_pointer<_From, _To>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_From` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_To` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12215:48
|
12215 | root::std::__rebind_pointer<_From, _To>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_To` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12249:46
|
12249 | root::std::__rebind_alloc_helper<_Traits, _Tp>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12331:46
|
12331 | root::std::__rebind_alloc_helper<_Traits, _Tp>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12613:45
|
12613 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12613:54
|
12613 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13413:45
|
13413 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13413:54
|
13413 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13426:45
|
13426 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13426:54
|
13426 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13526:45
|
13526 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13526:54
|
13526 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13538:45
|
13538 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13538:54
|
13538 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13820:45
|
13820 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13820:54
|
13820 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13853:45
|
13853 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13853:54
|
13853 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13910:45
|
13910 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13910:54
|
13910 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13943:45
|
13943 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13943:54
|
13943 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14014:45
|
14014 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14014:54
|
14014 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14044:45
|
14044 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14044:54
|
14044 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_CharT` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14082:37
|
14082 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_CharT` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14082:45
|
14082 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14082:54
|
14082 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_CharT` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14091:51
|
14091 | pub _base: root::std::basic_streambuf<_CharT, _Traits>,
| ^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_CharT` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14091:59
|
14091 | pub _base: root::std::basic_streambuf<_CharT, _Traits>,
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0204]: the trait `Copy` may not be implemented for this type
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:8963:25
|
8963 | #[derive(Debug, Copy)]
| ^^^^ field `__a_` does not implement `Copy`
error[E0204]: the trait `Copy` may not be implemented for this type
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12148:25
|
12148 | #[derive(Debug, Copy, Clone)]
| ^^^^ field `_base` does not implement `Copy`
error[E0204]: the trait `Copy` may not be implemented for this type
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9866:29
|
9866 | #[derive(Debug, Copy, Clone)]
| ^^^^ field `__d_` does not implement `Copy`
error[E0204]: the trait `Copy` may not be implemented for this type
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9804:29
|
9804 | #[derive(Debug, Copy, Clone)]
| ^^^^ field `__rep_` does not implement `Copy`
error[E0204]: the trait `Copy` may not be implemented for this type
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:7304:25
|
7304 | #[derive(Debug, Copy, Clone)]
| ^^^^ field `base_` does not implement `Copy`
error: aborting due to 5 previous errors
Build failed, waiting for other jobs to finish...
error[E0432]: unresolved import `self::super::super::super::super::root`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:6473:17
|
6473 | use self::super::super::super::super::root;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::super::root`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:7070:17
|
7070 | use self::super::super::super::super::root;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::super::root`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:7244:17
|
7244 | use self::super::super::super::super::root;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::root::std::ios_base_seekdir`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:7784:17
|
7784 | pub use self::super::super::super::root::std::ios_base_seekdir as
| _________________^ starting here...
7785 | | ios_base_seek_dir;
| |_________________________________^ ...ending here: There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::super::root`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:8878:17
|
8878 | use self::super::super::super::super::root;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::super::root`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9133:17
|
9133 | use self::super::super::super::super::root;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::super::root`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9802:17
|
9802 | use self::super::super::super::super::root;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::super::root`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:10783:17
|
10783 | use self::super::super::super::super::root;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::super::root`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:10837:17
|
10837 | use self::super::super::super::super::root;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::root::std::time_base_dateorder`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13423:17
|
13423 | pub use self::super::super::super::root::std::time_base_dateorder as
| _________________^ starting here...
13424 | | time_get_dateorder;
| |__________________________________^ ...ending here: There are too many initial `super`s.
error[E0432]: unresolved import `self::super::super::super::root::std::time_base_dateorder`
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13533:17
|
13533 | pub use self::super::super::super::root::std::time_base_dateorder as
| _________________^ starting here...
13534 | | time_get_byname_dateorder;
| |_________________________________________^ ...ending here: There are too many initial `super`s.
error[E0412]: type name `_Tp` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:6053:31
|
6053 | pub static value: _Tp;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_Tp` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Indx` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:7308:60
|
7308 | pub type tuple_base<_Tp> = root::std::__tuple_impl<_Indx, _Tp>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Indx` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Atomic` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:8965:23
|
8965 | pub __a_: _Atomic(bool),
| ^^^^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Atomic` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Ptr` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9125:68
|
9125 | pub type __rebind_pointer_type = root::std::pointer_traits<_Ptr>;
| ^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Ptr` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Tp` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9287:39
|
9287 | root::std::__pointer_type<_Tp, _Dp>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_Tp` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Dp` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9287:44
|
9287 | root::std::__pointer_type<_Tp, _Dp>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_Dp` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_T1` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9556:55
|
9556 | pub __data_: root::std::__compressed_pair<_T1, _T2>,
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_T1` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_T2` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9556:60
|
9556 | pub __data_: root::std::__compressed_pair<_T1, _T2>,
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_T2` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Tp` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:10899:48
|
10899 | pub type __bind__Fd = root::std::decay<_Tp>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_Tp` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:11533:46
|
11533 | root::std::__rebind_alloc_helper<_Traits, _Tp>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:11539:46
|
11539 | root::std::__rebind_alloc_helper<_Traits, _Tp>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Alloc` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:11541:41
|
11541 | root::std::allocator_traits<_Alloc>;
| ^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Alloc` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:11962:64
|
11962 | pub static npos: root::std::basic_string_size_type<_Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12036:46
|
12036 | root::std::__rebind_alloc_helper<_Traits, _Tp>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_From` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12050:41
|
12050 | root::std::__rebind_pointer<_From, _To>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_From` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_To` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12050:48
|
12050 | root::std::__rebind_pointer<_From, _To>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_To` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Ptr` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12066:69
|
12066 | pub type __tree_iterator___node = root::std::pointer_traits<_Ptr>;
| ^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Ptr` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_From` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12076:41
|
12076 | root::std::__rebind_pointer<_From, _To>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_From` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_To` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12076:48
|
12076 | root::std::__rebind_pointer<_From, _To>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_To` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Ptr` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12087:39
|
12087 | root::std::pointer_traits<_Ptr>;
| ^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Ptr` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_From` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12097:41
|
12097 | root::std::__rebind_pointer<_From, _To>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_From` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_To` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12097:48
|
12097 | root::std::__rebind_pointer<_From, _To>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_To` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_From` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12101:41
|
12101 | root::std::__rebind_pointer<_From, _To>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_From` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_To` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12101:48
|
12101 | root::std::__rebind_pointer<_From, _To>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_To` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Pointer` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12150:51
|
12150 | pub _base: root::std::__tree_end_node<_Pointer>,
| ^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Pointer` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_From` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12157:41
|
12157 | root::std::__rebind_pointer<_From, _To>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_From` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_To` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12157:48
|
12157 | root::std::__rebind_pointer<_From, _To>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_To` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_From` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12159:41
|
12159 | root::std::__rebind_pointer<_From, _To>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_From` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_To` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12159:48
|
12159 | root::std::__rebind_pointer<_From, _To>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_To` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Tp` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12178:50
|
12178 | root::std::__extract_key_value_types<_Tp>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_Tp` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Tp` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12180:50
|
12180 | root::std::__extract_key_value_types<_Tp>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_Tp` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_From` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12191:41
|
12191 | root::std::__rebind_pointer<_From, _To>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_From` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_To` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12191:48
|
12191 | root::std::__rebind_pointer<_From, _To>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_To` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Tp` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12202:50
|
12202 | root::std::__extract_key_value_types<_Tp>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_Tp` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Tp` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12204:50
|
12204 | root::std::__extract_key_value_types<_Tp>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_Tp` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_From` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12215:41
|
12215 | root::std::__rebind_pointer<_From, _To>;
| ^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_From` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_To` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12215:48
|
12215 | root::std::__rebind_pointer<_From, _To>;
| ^^^ undefined or not in scope
|
= help: no candidates by the name of `_To` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12249:46
|
12249 | root::std::__rebind_alloc_helper<_Traits, _Tp>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12331:46
|
12331 | root::std::__rebind_alloc_helper<_Traits, _Tp>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12613:45
|
12613 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12613:54
|
12613 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13413:45
|
13413 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13413:54
|
13413 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13426:45
|
13426 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13426:54
|
13426 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13526:45
|
13526 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13526:54
|
13526 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13538:45
|
13538 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13538:54
|
13538 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13820:45
|
13820 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13820:54
|
13820 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13853:45
|
13853 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13853:54
|
13853 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13910:45
|
13910 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13910:54
|
13910 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13943:45
|
13943 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:13943:54
|
13943 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14014:45
|
14014 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14014:54
|
14014 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14044:45
|
14044 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14044:54
|
14044 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_CharT` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14082:37
|
14082 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_CharT` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14082:45
|
14082 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Allocator` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14082:54
|
14082 | root::std::basic_string<_CharT, _Traits, _Allocator>;
| ^^^^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Allocator` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_CharT` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14091:51
|
14091 | pub _base: root::std::basic_streambuf<_CharT, _Traits>,
| ^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_CharT` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0412]: type name `_Traits` is undefined or not in scope
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:14091:59
|
14091 | pub _base: root::std::basic_streambuf<_CharT, _Traits>,
| ^^^^^^^ undefined or not in scope
|
= help: no candidates by the name of `_Traits` found in your project; maybe you misspelled the name or forgot to import an external crate?
error[E0204]: the trait `Copy` may not be implemented for this type
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:12148:25
|
12148 | #[derive(Debug, Copy, Clone)]
| ^^^^ field `_base` does not implement `Copy`
error[E0204]: the trait `Copy` may not be implemented for this type
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9866:29
|
9866 | #[derive(Debug, Copy, Clone)]
| ^^^^ field `__d_` does not implement `Copy`
error[E0204]: the trait `Copy` may not be implemented for this type
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:7304:25
|
7304 | #[derive(Debug, Copy, Clone)]
| ^^^^ field `base_` does not implement `Copy`
error[E0204]: the trait `Copy` may not be implemented for this type
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:9804:29
|
9804 | #[derive(Debug, Copy, Clone)]
| ^^^^ field `__rep_` does not implement `Copy`
error[E0204]: the trait `Copy` may not be implemented for this type
--> /Users/dignifiedquire/opensource/webrtc/librtcd.rs/target/debug/build/librtcd-c59004986512dc00/out/bindings.rs:8963:25
|
8963 | #[derive(Debug, Copy)]
| ^^^^ field `__a_` does not implement `Copy`
error: aborting due to 5 previous errors
error: Could not compile `librtcd`.
To learn more, run the command again with --verbose.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment