#[derive(Debug, Clone)]/// Result of a hydration attempt.
pubenumHydrationResult{/// Download succeeded.
Success {/// Downloaded size in bytes.
bytes:u64,},/// Snapshot was not found.
NotFound,/// Skipped (disabled or not configured).
Skipped {/// Reason for skipping.
reason:String,},}#[derive(Debug, Clone)]/// Result of a dehydration attempt.
pubenumDehydrationResult{/// Upload succeeded.
Success {/// Uploaded size in bytes.
bytes:u64,},/// No local snapshot to upload.
NoSnapshot,/// Skipped (disabled or not configured).
Skipped {/// Reason for skipping.
reason:String,},}