Enum gix_filter::driver::process::Status

source ·
pub enum Status {
    Previous,
    Unset,
    Named(String),
}
Expand description

The return status of an invoked command.

Variants§

§

Previous

No new status was set, and nothing was sent, so instead we are to assume the previous status is still in effect.

§

Unset

Something was sent, but we couldn’t identify it as status.

§

Named(String)

Assume the given named status.

Implementations§

source§

impl Status

Initialization

source

pub fn success() -> Self

Create a new instance that represents a successful operation.

source

pub fn delayed() -> Self

Create a new instance that represents a delayed operation.

source

pub fn abort() -> Self

Create a status that indicates to the client that the command that caused it will not be run anymore throughout the lifetime of the process. However, other commands may still run.

source

pub fn exit() -> Self

Create a status that makes the client send a kill signal.

source

pub fn error(message: impl Into<String>) -> Self

Create a new instance that represents an error with the given message.

source§

impl Status

Access

source

pub fn is_success(&self) -> bool

Note that this is assumed true even if no new status is set, hence we assume that upon error, the caller will not continue interacting with the process.

source

pub fn is_abort(&self) -> bool

Returns true if this is an abort status.

source

pub fn is_delayed(&self) -> bool

Return true if the status is explicitly set to indicated delayed output processing

source

pub fn message(&self) -> Option<&str>

Return the status message if present.

Trait Implementations§

source§

impl Clone for Status

source§

fn clone(&self) -> Status

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Status

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Status

§

impl RefUnwindSafe for Status

§

impl Send for Status

§

impl Sync for Status

§

impl Unpin for Status

§

impl UnwindSafe for Status

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> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

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

§

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.