Docs.rs
funlib-0.1.8
funlib 0.1.8
Docs.rs crate page
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
lemonxah
Dependencies
funlib-macros ^0.1.8
normal
Versions
100%
of the crate is documented
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
HKST
funlib
0.1.8
HKST
Required Associated Types
A
M
Implementations on Foreign Types
Box<B>
Option<B>
Rc<B>
Vec<B>
Implementors
In crate funlib
funlib
Trait
HKST
Copy item path
Source
pub trait HKST<'a, B> { type
A
; type
M
; }
Expand description
Higher kinded Type helper for M
-> M
Required Associated Types
§
Source
type
A
Current Type
Source
type
M
Type M
Implementations on Foreign Types
§
Source
§
impl<'a, B: 'a>
HKST
<'a, B> for
Option
<B>
Source
§
type
A
=
&'a B
Source
§
type
M
=
Option
<
&'a B
>
Source
§
impl<'a, B: 'a>
HKST
<'a, B> for
Box
<B>
Source
§
type
A
=
&'a B
Source
§
type
M
=
Box
<
&'a B
>
Source
§
impl<'a, B: 'a>
HKST
<'a, B> for
Rc
<B>
Source
§
type
A
=
&'a B
Source
§
type
M
=
Rc
<
&'a B
>
Source
§
impl<'a, B: 'a>
HKST
<'a, B> for
Vec
<B>
Source
§
type
A
=
&'a B
Source
§
type
M
=
Vec
<
&'a B
>
Implementors
§