Skip to main content

ReduceInput

Struct ReduceInput 

Source
pub struct ReduceInput<'a> {
Show 13 fields pub run_id: &'a str, pub created_at: &'a str, pub repo_root: &'a str, pub cwd: &'a str, pub shim_name: &'a str, pub command_original: &'a str, pub command_family: &'a str, pub command_key: &'a str, pub exit_code: i32, pub git_head: Option<&'a str>, pub git_worktree_hash: Option<&'a str>, pub redacted_stdout: &'a [u8], pub redacted_stderr: &'a [u8],
}

Fields§

§run_id: &'a str§created_at: &'a str§repo_root: &'a str§cwd: &'a str§shim_name: &'a str§command_original: &'a str§command_family: &'a str§command_key: &'a str§exit_code: i32§git_head: Option<&'a str>§git_worktree_hash: Option<&'a str>§redacted_stdout: &'a [u8]§redacted_stderr: &'a [u8]

Auto Trait Implementations§

§

impl<'a> Freeze for ReduceInput<'a>

§

impl<'a> RefUnwindSafe for ReduceInput<'a>

§

impl<'a> Send for ReduceInput<'a>

§

impl<'a> Sync for ReduceInput<'a>

§

impl<'a> Unpin for ReduceInput<'a>

§

impl<'a> UnsafeUnpin for ReduceInput<'a>

§

impl<'a> UnwindSafe for ReduceInput<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.