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
// SPDX-License-Identifier: MIT
//!
//! *Part of the wider OpenTimeline project*
//!
//! This crate defines the basic datatypes used across the OpenTimeline project
//! (web API, desktop application, renderer).
//!
//! This crate is designed to be used by the rest of the OpenTimeline project,
//! as well as by other 3rd party projects that want to interact with
//! OpenTimeline (e.g. via it's JSON web API).
//!
//! This crate aims to provide APIs for each type so that if a type is
//! instantiated, the developer can be sure it's valid.
//!
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
extern crate log;
// TODO: is this used anywhere (variants could/should hold the more specific Errors)
/// Errors that can be returned by OpenTimeline
/// Mark that a type has both an [`OpenTimelineId`] and a [`Name`], and setup
/// getters and setters for both