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
//! Client capability states.
use Arc;
use crateUploadToken;
/// Marks a client that can call read and authorization endpoints but cannot upload data.
///
/// This is the default capability produced by [`ClientBuilder::build`](crate::ClientBuilder::build)
/// when no upload token was supplied.
;
/// Marks a client that is authorized to attempt policy and schema uploads.
///
/// Values of this type are created only by adding a validated [`UploadToken`] to a client builder.