#[non_exhaustive]pub enum DeploymentStatusFilter {
Created,
Running,
Success,
Failed,
Canceled,
Blocked,
}
Expand description
Statuses deployments can be filtered by.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Created
Only consider created deployments.
Running
Only consider running deployments.
Success
Only consider successful deployments.
Failed
Only consider failed deployments.
Canceled
Only consider canceled deployments.
Blocked
Only consider blocked deployments.
Trait Implementations§
Source§impl Clone for DeploymentStatusFilter
impl Clone for DeploymentStatusFilter
Source§fn clone(&self) -> DeploymentStatusFilter
fn clone(&self) -> DeploymentStatusFilter
Returns a duplicate of the value. Read more
1.0.0 · 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 DeploymentStatusFilter
impl Debug for DeploymentStatusFilter
Source§impl From<DeploymentStatus> for DeploymentStatusFilter
impl From<DeploymentStatus> for DeploymentStatusFilter
Source§fn from(status: DeploymentStatus) -> Self
fn from(status: DeploymentStatus) -> Self
Converts to this type from the input type.
Source§impl ParamValue<'static> for DeploymentStatusFilter
impl ParamValue<'static> for DeploymentStatusFilter
Source§impl PartialEq for DeploymentStatusFilter
impl PartialEq for DeploymentStatusFilter
impl Copy for DeploymentStatusFilter
impl Eq for DeploymentStatusFilter
impl StructuralPartialEq for DeploymentStatusFilter
Auto Trait Implementations§
impl Freeze for DeploymentStatusFilter
impl RefUnwindSafe for DeploymentStatusFilter
impl Send for DeploymentStatusFilter
impl Sync for DeploymentStatusFilter
impl Unpin for DeploymentStatusFilter
impl UnwindSafe for DeploymentStatusFilter
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more