-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathtrack.rs
49 lines (48 loc) · 1.23 KB
/
track.rs
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
mod all;
mod deletion;
mod deletion_removal;
mod insertion;
mod insertion_deletion;
mod insertion_deletion_removal;
mod insertion_modification;
mod insertion_modification_deletion;
mod insertion_modification_removal;
mod insertion_removal;
mod modification;
mod modification_deletion;
mod modification_deletion_removal;
mod modification_removal;
mod nothing;
mod removal;
#[allow(missing_docs)]
pub struct Untracked;
#[allow(missing_docs)]
pub struct Insertion;
#[allow(missing_docs)]
pub struct InsertionAndModification;
#[allow(missing_docs)]
pub struct InsertionAndModificationAndDeletion;
#[allow(missing_docs)]
pub struct InsertionAndModificationAndRemoval;
#[allow(missing_docs)]
pub struct InsertionAndDeletion;
#[allow(missing_docs)]
pub struct InsertionAndRemoval;
#[allow(missing_docs)]
pub struct InsertionAndDeletionAndRemoval;
#[allow(missing_docs)]
pub struct Modification;
#[allow(missing_docs)]
pub struct ModificationAndDeletion;
#[allow(missing_docs)]
pub struct ModificationAndRemoval;
#[allow(missing_docs)]
pub struct ModificationAndDeletionAndRemoval;
#[allow(missing_docs)]
pub struct Deletion;
#[allow(missing_docs)]
pub struct DeletionAndRemoval;
#[allow(missing_docs)]
pub struct Removal;
#[allow(missing_docs)]
pub struct All;