Docs.rs
ragkit-0.0.0
ragkit 0.0.0
Permalink
Docs.rs crate page
MIT
Links
crates.io
Source
Owners
kyldvs
Dependencies
anyhow ^1.0.81
normal
serde ^1.0.197
normal
serde_json ^1.0.114
normal
Versions
0%
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
Rust
About docs.rs
Privacy policy
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Files
ragkit/
lib.rs
1
use
anyhow::Error;
2
3
pub fn
hello() ->
Result
<
&
'static
str, Error> {
4
Ok
(
"hello world"
)
5
}