Docs.rs
cglue-0.3.5
cglue 0.3.5
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
h33p
Dependencies
futures ^0.3
normal
optional
abi_stable ^0.10
normal
optional
cglue-macro ^0.3
normal
log ^0.4
normal
optional
no-std-compat ^0.4
normal
serde ^1
normal
optional
tarc ^0.1
normal
try_default =1.0.0
normal
optional
pollster ^0.2
dev
rustc_version ^0.4
build
Versions
68.98%
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
Callbackable
cglue
0.3.5
Callbackable
Required Methods
call
Implementors
In cglue::
callback
cglue
::
callback
Trait
Callbackable
Copy item path
Source
pub trait Callbackable<T> { // Required method fn
call
(&mut self, data: T) ->
bool
; }
Required Methods
§
Source
fn
call
(&mut self, data: T) ->
bool
Implementors
§
Source
§
impl<T>
Callbackable
<T> for &mut
OpaqueCallback
<'_, T>
Source
§
impl<T>
Callbackable
<T> for
OpaqueCallback
<'_, T>
Source
§
impl<T, F:
FnMut
(T) ->
bool
>
Callbackable
<T> for F