Docs.rs
rawkit-0.1.0
rawkit 0.1.0
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
Keavon
Dependencies
bitstream-io ^2.5.3
normal
image ^0.25.4
normal
optional
libraw-rs ^0.0.4
normal
optional
num_enum ^0.7.3
normal
rawkit-proc-macros ^0.1.0
normal
rayon ^1.10.0
normal
optional
reqwest ^0.12.9
normal
optional
thiserror ^1.0.66
normal
Versions
11.74%
of the crate is documented
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
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
RawPixelTransform
rawkit
0.1.0
RawPixel
Transform
Required Methods
apply
Implementations on Foreign Types
(A, B)
(A, B, C)
(A, B, C, D)
(A, B, C, D, E)
(A, B, C, D, E, F)
(A, B, C, D, E, F, G)
(A, B, C, D, E, F, G, H)
(A,)
Implementors
In rawkit::
processing
rawkit
::
processing
Trait
RawPixel
Transform
Copy item path
Source
pub trait RawPixelTransform { // Required method fn
apply
(&mut self, pixel:
RawPixel
) ->
u16
; }
Required Methods
§
Source
fn
apply
(&mut self, pixel:
RawPixel
) ->
u16
Implementations on Foreign Types
§
Source
§
impl<A>
RawPixelTransform
for
(A,)
where A:
RawPixelTransform
,
Source
§
fn
apply
(&mut self, pixel:
RawPixel
) ->
u16
Source
§
impl<A, B>
RawPixelTransform
for
(A, B)
where A:
RawPixelTransform
, B:
RawPixelTransform
,
Source
§
fn
apply
(&mut self, pixel:
RawPixel
) ->
u16
Source
§
impl<A, B, C>
RawPixelTransform
for
(A, B, C)
where A:
RawPixelTransform
, B:
RawPixelTransform
, C:
RawPixelTransform
,
Source
§
fn
apply
(&mut self, pixel:
RawPixel
) ->
u16
Source
§
impl<A, B, C, D>
RawPixelTransform
for
(A, B, C, D)
where A:
RawPixelTransform
, B:
RawPixelTransform
, C:
RawPixelTransform
, D:
RawPixelTransform
,
Source
§
fn
apply
(&mut self, pixel:
RawPixel
) ->
u16
Source
§
impl<A, B, C, D, E>
RawPixelTransform
for
(A, B, C, D, E)
where A:
RawPixelTransform
, B:
RawPixelTransform
, C:
RawPixelTransform
, D:
RawPixelTransform
, E:
RawPixelTransform
,
Source
§
fn
apply
(&mut self, pixel:
RawPixel
) ->
u16
Source
§
impl<A, B, C, D, E, F>
RawPixelTransform
for
(A, B, C, D, E, F)
where A:
RawPixelTransform
, B:
RawPixelTransform
, C:
RawPixelTransform
, D:
RawPixelTransform
, E:
RawPixelTransform
, F:
RawPixelTransform
,
Source
§
fn
apply
(&mut self, pixel:
RawPixel
) ->
u16
Source
§
impl<A, B, C, D, E, F, G>
RawPixelTransform
for
(A, B, C, D, E, F, G)
where A:
RawPixelTransform
, B:
RawPixelTransform
, C:
RawPixelTransform
, D:
RawPixelTransform
, E:
RawPixelTransform
, F:
RawPixelTransform
, G:
RawPixelTransform
,
Source
§
fn
apply
(&mut self, pixel:
RawPixel
) ->
u16
Source
§
impl<A, B, C, D, E, F, G, H>
RawPixelTransform
for
(A, B, C, D, E, F, G, H)
where A:
RawPixelTransform
, B:
RawPixelTransform
, C:
RawPixelTransform
, D:
RawPixelTransform
, E:
RawPixelTransform
, F:
RawPixelTransform
, G:
RawPixelTransform
, H:
RawPixelTransform
,
Source
§
fn
apply
(&mut self, pixel:
RawPixel
) ->
u16
Implementors
§
Source
§
impl<T:
Fn
(
RawPixel
) ->
u16
>
RawPixelTransform
for T