pub enum WalReplayState {
Waiting,
InProgress,
Done,
}
Variants§
Implementations§
source§impl WalReplayState
impl WalReplayState
pub fn is_waiting(&self) -> bool
pub fn is_in_progress(&self) -> bool
pub fn is_done(&self) -> bool
Trait Implementations§
source§impl Clone for WalReplayState
impl Clone for WalReplayState
source§fn clone(&self) -> WalReplayState
fn clone(&self) -> WalReplayState
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 WalReplayState
impl Debug for WalReplayState
source§impl<'de> Deserialize<'de> for WalReplayState
impl<'de> Deserialize<'de> for WalReplayState
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for WalReplayState
impl PartialEq for WalReplayState
source§fn eq(&self, other: &WalReplayState) -> bool
fn eq(&self, other: &WalReplayState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for WalReplayState
impl Eq for WalReplayState
impl StructuralPartialEq for WalReplayState
Auto Trait Implementations§
impl Freeze for WalReplayState
impl RefUnwindSafe for WalReplayState
impl Send for WalReplayState
impl Sync for WalReplayState
impl Unpin for WalReplayState
impl UnwindSafe for WalReplayState
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