pub struct RestoreResult {
pub restored_from: String,
pub state: String,
pub warnings: Vec<String>,
}Expand description
ign rig restore output model (04-04, RIG-04) — all keys always.
Fields§
§restored_from: StringThe gwbk restored from (as given).
state: StringThe post-restore state WITNESSED by the RUNNING wait —
"running" | "uncommissioned" (a bare 2xx never suffices;
Pitfall 6).
warnings: Vec<String>Data-level warnings — ALWAYS carries
RESTORE_TOKEN_WARNING (Pitfall 5) plus any wait warnings.
Trait Implementations§
Source§impl Debug for RestoreResult
impl Debug for RestoreResult
Auto Trait Implementations§
impl Freeze for RestoreResult
impl RefUnwindSafe for RestoreResult
impl Send for RestoreResult
impl Sync for RestoreResult
impl Unpin for RestoreResult
impl UnsafeUnpin for RestoreResult
impl UnwindSafe for RestoreResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more