pub struct WaitResult {
pub target: String,
pub state: String,
pub elapsed_secs: u64,
}Expand description
ign wait <target> output model (gateway / restart / module).
Fields§
§target: StringWhat was waited on: gateway, restart, or module <id>.
state: StringThe terminal state observed (RUNNING / ACTIVE).
elapsed_secs: u64Seconds until the terminal state.
Trait Implementations§
Source§impl Debug for WaitResult
impl Debug for WaitResult
Auto Trait Implementations§
impl Freeze for WaitResult
impl RefUnwindSafe for WaitResult
impl Send for WaitResult
impl Sync for WaitResult
impl Unpin for WaitResult
impl UnsafeUnpin for WaitResult
impl UnwindSafe for WaitResult
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