Docs.rs
bindy-0.33.0
bindy 0.33.0
Permalink
Docs.rs crate page
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
Rigidity
Dependencies
bip39 ^2.2.0
normal
chia-bls ^0.36.1
normal
chia-protocol ^0.36.1
normal
chia-sdk-client ^0.33.0
normal
optional
chia-sdk-driver ^0.33.0
normal
chia-sdk-test ^0.33.0
normal
chia-sdk-utils ^0.33.0
normal
chia-ssl ^0.36.1
normal
optional
chia-traits ^0.36.1
normal
clvm-traits ^0.36.1
normal
clvm-utils ^0.36.1
normal
clvmr ^0.16.2
normal
hex ^0.4.3
normal
js-sys ^0.3.77
normal
optional
napi ^3.3.0
normal
optional
num-bigint ^0.4.6
normal
pyo3 ^0.23.5
normal
optional
reqwest ^0.12.23
normal
signature ^2.2.0
normal
thiserror ^2.0.17
normal
Versions
0%
of the crate is documented
Platform
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
IntoRust
bindy
0.33.0
Into
Rust
Required Methods
into_rust
Implementations on Foreign Types
Option<B>
String
Vec<B>
bool
f64
i8
i16
i32
u8
u16
u32
usize
Implementors
In crate bindy
bindy
Trait
Into
Rust
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
<
f64
, T, L> for
f64
Source
§
fn
into_rust
(self, _context:
&T
) ->
Result
<
f64
>
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
<
usize
, T, L> for
usize
Source
§
fn
into_rust
(self, _context:
&T
) ->
Result
<
usize
>
Source
§
impl<T, L>
IntoRust
<
String
, T, L> for
String
Source
§
fn
into_rust
(self, _context:
&T
) ->
Result
<
String
>
Implementors
§