pub struct CloudListOutput {
pub status: ExitStatus,
pub stdout: String,
pub stderr: String,
pub json: Option<Value>,
}Expand description
Output from codex cloud list.
Fields§
§status: ExitStatus§stdout: String§stderr: String§json: Option<Value>Parsed JSON output when --json was requested.
Trait Implementations§
Source§impl Clone for CloudListOutput
impl Clone for CloudListOutput
Source§fn clone(&self) -> CloudListOutput
fn clone(&self) -> CloudListOutput
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 CloudListOutput
impl Debug for CloudListOutput
Source§impl PartialEq for CloudListOutput
impl PartialEq for CloudListOutput
Source§fn eq(&self, other: &CloudListOutput) -> bool
fn eq(&self, other: &CloudListOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CloudListOutput
Auto Trait Implementations§
impl Freeze for CloudListOutput
impl RefUnwindSafe for CloudListOutput
impl Send for CloudListOutput
impl Sync for CloudListOutput
impl Unpin for CloudListOutput
impl UnsafeUnpin for CloudListOutput
impl UnwindSafe for CloudListOutput
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