1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#![allow(missing_docs)]

/// The `author` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Author;
mod author;

/// The `branch` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Branch;
pub mod branch;

/// The `checkout` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Checkout;
pub mod checkout;

/// The `clone` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Clone;
mod clone;

/// The `committer` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Committer;
mod committer;

/// The `core` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Core;
pub mod core;

/// The `credential` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Credential;
pub mod credential;

/// The `diff` top-level section.
#[derive(Copy, Clone, Default)]
#[cfg(feature = "blob-diff")]
pub struct Diff;
#[cfg(feature = "blob-diff")]
pub mod diff;

/// The `extension` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Extensions;
pub mod extensions;

/// The `fetch` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Fetch;
pub mod fetch;

/// The `gitoxide` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Gitoxide;
pub mod gitoxide;

/// The `http` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Http;
pub mod http;

/// The `index` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Index;
pub mod index;

/// The `init` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Init;
mod init;

/// The `pack` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Pack;
pub mod pack;

/// The `protocol` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Protocol;
pub mod protocol;

/// The `remote` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Remote;
pub mod remote;

/// The `safe` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Safe;
mod safe;

/// The `ssh` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Ssh;
pub mod ssh;

/// The `user` top-level section.
#[derive(Copy, Clone, Default)]
pub struct User;
mod user;

/// The `url` top-level section.
#[derive(Copy, Clone, Default)]
pub struct Url;
mod url;