Docs.rs
prop-0.23.0
prop 0.23.0
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
bvssvni
Dependencies
Versions
100%
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
☰
SortMin
Associated Types
Out
Implementations on Foreign Types
(S<N>, S<M>)
(S<N>, Z)
(Z, S<N>)
(Z, Z)
Implementors
In prop::path_semantics
?
Trait
prop
::
path_semantics
::
SortMin
source
·
[
−
]
pub trait SortMin<T:
LProp
, U:
LProp
> { type
Out
:
LProp
; }
Expand description
Sorts two types.
Associated Types
source
type
Out
:
LProp
The output type.
Implementations on Foreign Types
source
impl<T:
LProp
, U:
LProp
>
SortMin
<T, U> for
(
Z
,
Z
)
type
Out
= T
source
impl<T:
LProp
, U:
LProp
, N>
SortMin
<T, U> for
(
Z
,
S
<N>
)
type
Out
= T
source
impl<T:
LProp
, U:
LProp
, N>
SortMin
<T, U> for
(
S
<N>,
Z
)
type
Out
= U
source
impl<T:
LProp
, U:
LProp
, N, M>
SortMin
<T, U> for
(
S
<N>,
S
<M>
)
where
(
N, M
)
:
SortMin
<T, U>,
type
Out
= <
(
N, M
)
as
SortMin
<T, U>>::
Out
Implementors