Docs.rs
config_parser2-0.1.5
config_parser2 0.1.5
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
aome510
Dependencies
anyhow ^1.0.75
normal
config_parser_derive ^0.1.3
normal
serde ^1.0.188
normal
toml ^0.8.1
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
docs.rs
About docs.rs
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
config_
parser2
0.1.5
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
ConfigParser
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
§