win_cf_api 0.0.1

could filter sdk for rust
/// 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] and [Placeholder][crate::Placeholder]. Thus, it is not necessary to
/// create and call these structs manually unless you need more granular access.
pub mod command;
mod error;
/// Contains traits extending common structs from the [std][std].
pub mod ext;
mod filter;
mod placeholder;
mod placeholder_file;
mod request;
mod root;
mod usn;
mod utility;

pub use error::CloudErrorKind;
pub use filter::{info, ticket, SyncFilter};
pub use placeholder::{Placeholder, UpdateOptions};
pub use placeholder_file::{BatchCreate, Metadata, PlaceholderFile};
pub use request::{Process, Request};
pub use root::{
    active_roots, is_supported, Connection, HydrationPolicy, HydrationType, PopulationType,
    ProtectionMode, Registration, SecurityId, Session, SupportedAttributes, SyncRootId,
    SyncRootIdBuilder,
};
pub use usn::Usn;