Docs.rs
clapfig-0.21.4
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
clapfig 0.21.4
Rich, layered configuration for Rust CLI apps
Crate
Source
Builds
Feature flags
Documentation
Hide files
..
allowed_empty_rejected.rs
allowed_empty_rejected.stderr
allowed_on_vec_rejected.rs
allowed_on_vec_rejected.stderr
allowed_type_mismatch.rs
allowed_type_mismatch.stderr
array_default_on_scalar.rs
array_default_on_scalar.stderr
generic_struct_rejected.rs
generic_struct_rejected.stderr
hashmap_non_string_key_rejected.rs
hashmap_non_string_key_rejected.stderr
i128_rejected.rs
i128_rejected.stderr
option_of_option_rejected.rs
option_of_option_rejected.stderr
tuple_struct_rejected.rs
tuple_struct_rejected.stderr
unknown_field_attr.rs
unknown_field_attr.stderr
unknown_struct_attr.rs
unknown_struct_attr.stderr
value_and_allowed_conflict.rs
value_and_allowed_conflict.stderr
value_option_of_option_rejected.rs
value_option_of_option_rejected.stderr
1
2
3
4
5
6
use
clapfig
::
Schema
;
#
[
derive
(
Schema
)
]
struct
Tup
(
i32
, String
)
;
fn
main
(
)
{
}