pub struct CliResult {
pub outcome: Result<Outcome>,
pub project_id: Option<String>,
pub telemetry_enabled: bool,
}Expand description
Result of running the CLI, including telemetry information
Fields§
§outcome: Result<Outcome>§project_id: Option<String>Project ID from config (for telemetry distinct_id)
telemetry_enabled: boolWhether telemetry is enabled in config
Auto Trait Implementations§
impl Freeze for CliResult
impl RefUnwindSafe for CliResult
impl Send for CliResult
impl Sync for CliResult
impl Unpin for CliResult
impl UnsafeUnpin for CliResult
impl UnwindSafe for CliResult
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