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
#![doc = include_str!("../README.md")]

/// Contains callbacks error types.
pub mod error;
/// Contains traits extending common structs from the [std].
pub mod ext;
/// Contains the [SyncFilter][crate::filter::SyncFilter] and [Filter][crate::filter::Filter] traits
/// and related structs.
pub mod filter;
/// Contains the [Metadata][crate::metadata::Metadata] struct.
pub mod metadata;
/// Contains the [Placeholder][crate::placeholder::Placeholder] struct.
pub mod placeholder;
/// Contains the [PlaceholderFile][crate::placeholder_file::PlaceholderFile] struct.
pub mod placeholder_file;
/// Contains the sync root structs.
pub mod root;
pub mod usn;
pub mod utility;

/// Contains low-level structs for directly executing Cloud Filter operations.
///
/// The [command][crate::command] API is exposed through various higher-level structs, like
/// [Request][crate::request::Request] and [Placeholder][crate::placeholder::Placeholder].
mod command;

mod sealed {
    pub trait Sealed {}
}