Docs.rs
rai-core-0.11.0
rai-core 0.11.0
Permalink
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
cksac
Dependencies
candle-core ^0.4.1
normal
optional
candle-flash-attn ^0.4.1
normal
optional
colored ^2.1.0
normal
dyn-clone ^1.0.16
normal
half ^2.3.1
normal
num-traits ^0.2.17
normal
once_cell ^1.19.0
normal
paste ^1.0
normal
safetensors ^0.4.1
normal
thiserror ^1.0.51
normal
tracing ^0.1.40
normal
Versions
4.36%
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
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
rai_
core
0.11.0
ToApply
Arg
Required Methods
to_arg
Implementations on Foreign Types
&'a Option<T>
&'a T
&'a T
Implementors
In rai_
core::
nn
rai_core
::
nn
Trait
ToApplyArg
Copy item path
Source
pub trait ToApplyArg<O> { // Required method fn
to_arg
(self) -> O; }
Required Methods
§
Source
fn
to_arg
(self) -> O
Implementations on Foreign Types
§
Source
§
impl<'a, T>
ToApplyArg
<
Option
<
&'a T
>> for &'a
Option
<T>
Source
§
fn
to_arg
(self) ->
Option
<
&'a T
>
Source
§
impl<'a, T>
ToApplyArg
<
&'a T
> for
&'a T
Source
§
fn
to_arg
(self) ->
&'a T
Source
§
impl<'a, T:
Copy
>
ToApplyArg
<T> for
&'a T
Source
§
fn
to_arg
(self) -> T
Implementors
§