Docs.rs
frunk_utils-0.2.7
frunk_utils 0.2.7
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
davidspies
Dependencies
frunk ^0.4
normal
Versions
10.84%
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
Func
frunk_
utils
0.2.7
Func
Required Associated Types
Output
Required Methods
call
Implementations on Foreign Types
&mut F
Implementors
In crate frunk_
utils
frunk_utils
Trait
Func
Copy item path
Source
pub trait Func<I> { type
Output
; // Required method fn
call
(&mut self, i: I) -> Self::
Output
; }
Required Associated Types
§
Source
type
Output
Required Methods
§
Source
fn
call
(&mut self, i: I) -> Self::
Output
Implementations on Foreign Types
§
Source
§
impl<F:
Func
<I>, I>
Func
<I> for
&mut F
Source
§
type
Output
= <F as
Func
<I>>::
Output
Source
§
fn
call
(&mut self, i: I) -> Self::
Output
Implementors
§
Source
§
impl<S:
Add
<T>, T>
Func
<
(S, T)
> for
Adder
Source
§
type
Output
= <S as
Add
<T>>::
Output
Source
§
impl<S:
Add
<T>, T:
Clone
>
Func
<S> for
AddOffset
<T>
Source
§
type
Output
= <S as
Add
<T>>::
Output
Source
§
impl<S:
AddAssign
<T>, T>
Func
<(
&mut S
, T)> for
AddAssigner
Source
§
type
Output
=
()
Source
§
impl<S:
AddAssign
<T>, T:
Clone
>
Func
<
&mut S
> for
AddAssignOffset
<T>
Source
§
type
Output
=
()
Source
§
impl<S:
Div
<T>, T>
Func
<
(S, T)
> for
Divider
Source
§
type
Output
= <S as
Div
<T>>::
Output
Source
§
impl<S:
Div
<T>, T:
Clone
>
Func
<S> for
DivScalar
<T>
Source
§
type
Output
= <S as
Div
<T>>::
Output
Source
§
impl<S:
DivAssign
<T>, T>
Func
<(
&mut S
, T)> for
DivAssigner
Source
§
type
Output
=
()
Source
§
impl<S:
DivAssign
<T>, T:
Clone
>
Func
<
&mut S
> for
DivAssignScalar
<T>
Source
§
type
Output
=
()
Source
§
impl<S:
Mul
<T>, T>
Func
<
(S, T)
> for
Multer
Source
§
type
Output
= <S as
Mul
<T>>::
Output
Source
§
impl<S:
Mul
<T>, T:
Clone
>
Func
<S> for
MulScalar
<T>
Source
§
type
Output
= <S as
Mul
<T>>::
Output
Source
§
impl<S:
MulAssign
<T>, T>
Func
<(
&mut S
, T)> for
MulAssigner
Source
§
type
Output
=
()
Source
§
impl<S:
MulAssign
<T>, T:
Clone
>
Func
<
&mut S
> for
MulAssignScalar
<T>
Source
§
type
Output
=
()
Source
§
impl<S:
Neg
>
Func
<S> for
Negator
Source
§
type
Output
= <S as
Neg
>::
Output
Source
§
impl<S:
Rem
<T>, T>
Func
<
(S, T)
> for
Remainder
Source
§
type
Output
= <S as
Rem
<T>>::
Output
Source
§
impl<S:
Rem
<T>, T:
Clone
>
Func
<S> for
RemScalar
<T>
Source
§
type
Output
= <S as
Rem
<T>>::
Output
Source
§
impl<S:
RemAssign
<T>, T>
Func
<(
&mut S
, T)> for
RemAssigner
Source
§
type
Output
=
()
Source
§
impl<S:
RemAssign
<T>, T:
Clone
>
Func
<
&mut S
> for
RemAssignScalar
<T>
Source
§
type
Output
=
()
Source
§
impl<S:
Sub
<T>, T>
Func
<
(S, T)
> for
Subber
Source
§
type
Output
= <S as
Sub
<T>>::
Output
Source
§
impl<S:
Sub
<T>, T:
Clone
>
Func
<S> for
SubOffset
<T>
Source
§
type
Output
= <S as
Sub
<T>>::
Output
Source
§
impl<S:
SubAssign
<T>, T>
Func
<(
&mut S
, T)> for
SubAssigner
Source
§
type
Output
=
()
Source
§
impl<S:
SubAssign
<T>, T:
Clone
>
Func
<
&mut S
> for
SubAssignOffset
<T>
Source
§
type
Output
=
()
Source
§
impl<T>
Func
<T> for
Identity
Source
§
type
Output
= T