Docs.rs
config_parser2-0.1.6
config_parser2 0.1.6
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
aome510
Dependencies
anyhow ^1.0.98
normal
config_parser_derive ^0.1.3
normal
serde ^1.0.219
normal
toml ^0.9.2
normal
Versions
0%
of the crate is documented
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
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
ConfigParser
config_
parser2
0.1.6
Config
Parser
Required Methods
parse
Implementations on Foreign Types
Option<T>
String
Vec<T>
bool
char
f32
f64
i8
i16
i32
i64
i128
isize
u8
u16
u32
u64
u128
usize
Implementors
In crate config_
parser2
config_parser2
Trait
Config
Parser
Copy item path
Source
pub trait ConfigParser { // Required method fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>; }
Required Methods
§
Source
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Implementations on Foreign Types
§
Source
§
impl
ConfigParser
for
bool
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl
ConfigParser
for
char
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl
ConfigParser
for
f32
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl
ConfigParser
for
f64
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl
ConfigParser
for
i8
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl
ConfigParser
for
i16
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl
ConfigParser
for
i32
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl
ConfigParser
for
i64
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl
ConfigParser
for
i128
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl
ConfigParser
for
isize
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl
ConfigParser
for
u8
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl
ConfigParser
for
u16
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl
ConfigParser
for
u32
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl
ConfigParser
for
u64
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl
ConfigParser
for
u128
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl
ConfigParser
for
usize
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl
ConfigParser
for
String
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl<'de, T>
ConfigParser
for
Option
<T>
where T:
Deserialize
<'de>,
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Source
§
impl<'de, T>
ConfigParser
for
Vec
<T>
where T:
Deserialize
<'de>,
Source
§
fn
parse
(&mut self, value:
Value
) ->
Result
<
()
>
Implementors
§