src/bin/proxmox-backup-client.rs: add simple task management cli

This commit is contained in:
Dietmar Maurer
2019-12-10 13:43:53 +01:00
parent 73e57f244e
commit 5830c20560
3 changed files with 105 additions and 5 deletions

View File

@ -97,3 +97,7 @@ pub const BACKUP_TIME_SCHEMA: Schema =
IntegerSchema::new("Backup time (Unix epoch.)")
.minimum(1_547_797_308)
.schema();
pub const UPID_SCHEMA: Schema = StringSchema::new("Unique Process/Task ID.")
.max_length(256)
.schema();