pub struct StatusQueryResult {
pub success: bool,
pub output: Option<String>,
pub error: Option<String>,
}Expand description
Query result from status lookup
Fields§
§success: bool§output: Option<String>§error: Option<String>Auto Trait Implementations§
impl Freeze for StatusQueryResult
impl RefUnwindSafe for StatusQueryResult
impl Send for StatusQueryResult
impl Sync for StatusQueryResult
impl Unpin for StatusQueryResult
impl UnsafeUnpin for StatusQueryResult
impl UnwindSafe for StatusQueryResult
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