#[repr(i32)]pub enum IssueState {
Unspecified = 0,
Open = 1,
InProgress = 2,
Fixed = 3,
WontFix = 4,
Verified = 5,
}
Expand description
The status of a customer issue.
Variants§
Unspecified = 0
Issue in an unknown state.
Open = 1
Issue is currently open but the work on it has not been started.
InProgress = 2
Issue is currently being worked on.
Fixed = 3
Issue is fixed.
WontFix = 4
Issue has been marked as invalid.
Verified = 5
Issue verified and in production.
Implementations§
Trait Implementations§
Source§impl Clone for IssueState
impl Clone for IssueState
Source§fn clone(&self) -> IssueState
fn clone(&self) -> IssueState
Returns a copy 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 IssueState
impl Debug for IssueState
Source§impl Default for IssueState
impl Default for IssueState
Source§fn default() -> IssueState
fn default() -> IssueState
Returns the “default value” for a type. Read more
Source§impl From<IssueState> for i32
impl From<IssueState> for i32
Source§fn from(value: IssueState) -> i32
fn from(value: IssueState) -> i32
Converts to this type from the input type.
Source§impl Hash for IssueState
impl Hash for IssueState
Source§impl Ord for IssueState
impl Ord for IssueState
Source§fn cmp(&self, other: &IssueState) -> Ordering
fn cmp(&self, other: &IssueState) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IssueState
impl PartialEq for IssueState
Source§impl PartialOrd for IssueState
impl PartialOrd for IssueState
impl Copy for IssueState
impl Eq for IssueState
impl StructuralPartialEq for IssueState
Auto Trait Implementations§
impl Freeze for IssueState
impl RefUnwindSafe for IssueState
impl Send for IssueState
impl Sync for IssueState
impl Unpin for IssueState
impl UnwindSafe for IssueState
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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> 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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request