Docs.rs
bindy-0.27.0
bindy 0.27.0
Docs.rs crate page
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
Rigidity
Dependencies
bech32 ^0.9.1
normal
bip39 ^2.2.0
normal
chia-bls ^0.26.0
normal
chia-protocol ^0.26.0
normal
chia-sdk-driver ^0.27.0
normal
chia-sdk-test ^0.27.0
normal
chia-sdk-utils ^0.27.0
normal
chia-traits ^0.26.0
normal
clvm-traits ^0.26.0
normal
clvm-utils ^0.26.0
normal
clvmr ^0.14.0
normal
hex ^0.4.3
normal
js-sys ^0.3.77
normal
optional
napi ^2.16.17
normal
optional
num-bigint ^0.4.6
normal
pyo3 ^0.23.5
normal
optional
reqwest ^0.12.20
normal
signature ^2.2.0
normal
thiserror ^2.0.12
normal
Versions
0%
of the crate is documented
Go to latest version
Platform
i686-unknown-linux-gnu
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
bindy
0.27.0
Into
Rust
Required Methods
into_rust
Implementations on Foreign Types
Option<B>
String
Vec<B>
bool
i8
i16
i32
u8
u16
u32
Implementors
In crate bindy
bindy
Trait
IntoRust
Copy item path
Source
pub trait IntoRust<T, C, L> { // Required method fn
into_rust
(self, context:
&C
) ->
Result
<T>; }
Required Methods
§
Source
fn
into_rust
(self, context:
&C
) ->
Result
<T>
Implementations on Foreign Types
§
Source
§
impl<R, B, C, L>
IntoRust
<
Option
<R>, C, L> for
Option
<B>
where B:
IntoRust
<R, C, L>,
Source
§
fn
into_rust
(self, context:
&C
) ->
Result
<
Option
<R>>
Source
§
impl<R, B, C, L>
IntoRust
<
Vec
<R>, C, L> for
Vec
<B>
where B:
IntoRust
<R, C, L>,
Source
§
fn
into_rust
(self, context:
&C
) ->
Result
<
Vec
<R>>
Source
§
impl<T, L>
IntoRust
<
bool
, T, L> for
bool
Source
§
fn
into_rust
(self, _context:
&T
) ->
Result
<
bool
>
Source
§
impl<T, L>
IntoRust
<
i8
, T, L> for
i8
Source
§
fn
into_rust
(self, _context:
&T
) ->
Result
<
i8
>
Source
§
impl<T, L>
IntoRust
<
i16
, T, L> for
i16
Source
§
fn
into_rust
(self, _context:
&T
) ->
Result
<
i16
>
Source
§
impl<T, L>
IntoRust
<
i32
, T, L> for
i32
Source
§
fn
into_rust
(self, _context:
&T
) ->
Result
<
i32
>
Source
§
impl<T, L>
IntoRust
<
u8
, T, L> for
u8
Source
§
fn
into_rust
(self, _context:
&T
) ->
Result
<
u8
>
Source
§
impl<T, L>
IntoRust
<
u16
, T, L> for
u16
Source
§
fn
into_rust
(self, _context:
&T
) ->
Result
<
u16
>
Source
§
impl<T, L>
IntoRust
<
u32
, T, L> for
u32
Source
§
fn
into_rust
(self, _context:
&T
) ->
Result
<
u32
>
Source
§
impl<T, L>
IntoRust
<
String
, T, L> for
String
Source
§
fn
into_rust
(self, _context:
&T
) ->
Result
<
String
>
Implementors
§