Docs.rs
bin-tree-0.2.1
bin-tree 0.2.1
Docs.rs crate page
Apache-2.0
Links
Repository
crates.io
Source
Owners
sergey-shandar
Dependencies
Versions
0%
of the crate is documented
Go to latest version
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
☰
BinTree
Required Associated Types
Result
Required Methods
bin_tree
Implementors
In bin_tree
?
Trait
bin_tree
::
BinTree
source
·
[
−
]
pub trait BinTree { type
Result
:
Node
; fn
bin_tree
(self) ->
Option
<Self::
Result
>; }
Required Associated Types
§
source
type
Result
:
Node
Required Methods
§
source
fn
bin_tree
(self) ->
Option
<Self::
Result
>
Implementors
§
source
§
impl<T:
Iterator
>
BinTree
for T
where
T::
Item
:
Node
+
Default
,
§
type
Result
= <T as
Iterator
>::
Item