pub struct AttemptIODTO {
pub input: Option<BlobPreviewDTO>,
pub resolved_input: Option<BlobPreviewDTO>,
pub output: Option<BlobPreviewDTO>,
pub log: Option<BlobPreviewDTO>,
pub terminal: Option<AttemptTerminalDTO>,
pub wait_prompt: Option<BlobPreviewDTO>,
}Fields§
§input: Option<BlobPreviewDTO>§resolved_input: Option<BlobPreviewDTO>§output: Option<BlobPreviewDTO>§log: Option<BlobPreviewDTO>§terminal: Option<AttemptTerminalDTO>§wait_prompt: Option<BlobPreviewDTO>Trait Implementations§
Source§impl Clone for AttemptIODTO
impl Clone for AttemptIODTO
Source§fn clone(&self) -> AttemptIODTO
fn clone(&self) -> AttemptIODTO
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 AttemptIODTO
impl Debug for AttemptIODTO
Source§impl<'de> Deserialize<'de> for AttemptIODTO
impl<'de> Deserialize<'de> for AttemptIODTO
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for AttemptIODTO
Source§impl PartialEq for AttemptIODTO
impl PartialEq for AttemptIODTO
Source§fn eq(&self, other: &AttemptIODTO) -> bool
fn eq(&self, other: &AttemptIODTO) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AttemptIODTO
impl Serialize for AttemptIODTO
impl StructuralPartialEq for AttemptIODTO
Auto Trait Implementations§
impl Freeze for AttemptIODTO
impl RefUnwindSafe for AttemptIODTO
impl Send for AttemptIODTO
impl Sync for AttemptIODTO
impl Unpin for AttemptIODTO
impl UnsafeUnpin for AttemptIODTO
impl UnwindSafe for AttemptIODTO
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