pub struct RemoteRunOutcome {
pub log: String,
pub api_token: Option<String>,
}Expand description
Result of a remote CLI run (log text plus optional captured status-api bearer).
Fields§
§log: StringMerged remote stdout/stderr (or a short finished marker when Inherit was empty).
api_token: Option<String>Hex bearer from payload install, when captured from the box drop file.
Trait Implementations§
Source§impl Clone for RemoteRunOutcome
impl Clone for RemoteRunOutcome
Source§fn clone(&self) -> RemoteRunOutcome
fn clone(&self) -> RemoteRunOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RemoteRunOutcome
impl Debug for RemoteRunOutcome
Source§impl Default for RemoteRunOutcome
impl Default for RemoteRunOutcome
Source§fn default() -> RemoteRunOutcome
fn default() -> RemoteRunOutcome
Returns the “default value” for a type. Read more
impl Eq for RemoteRunOutcome
Source§impl PartialEq for RemoteRunOutcome
impl PartialEq for RemoteRunOutcome
Source§fn eq(&self, other: &RemoteRunOutcome) -> bool
fn eq(&self, other: &RemoteRunOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RemoteRunOutcome
Auto Trait Implementations§
impl Freeze for RemoteRunOutcome
impl RefUnwindSafe for RemoteRunOutcome
impl Send for RemoteRunOutcome
impl Sync for RemoteRunOutcome
impl Unpin for RemoteRunOutcome
impl UnsafeUnpin for RemoteRunOutcome
impl UnwindSafe for RemoteRunOutcome
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