pub enum ReviewState {
Open,
Merged,
Closed,
Unknown(String),
}Variants§
Trait Implementations§
Source§impl Debug for ReviewState
impl Debug for ReviewState
Source§impl Display for ReviewState
impl Display for ReviewState
impl Eq for ReviewState
Source§impl PartialEq for ReviewState
impl PartialEq for ReviewState
Source§fn eq(&self, other: &ReviewState) -> bool
fn eq(&self, other: &ReviewState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReviewState
Auto Trait Implementations§
impl Freeze for ReviewState
impl RefUnwindSafe for ReviewState
impl Send for ReviewState
impl Sync for ReviewState
impl Unpin for ReviewState
impl UnsafeUnpin for ReviewState
impl UnwindSafe for ReviewState
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