pub struct ProgressCheck { /* private fields */ }Implementations§
Source§impl ProgressCheck
impl ProgressCheck
pub fn event(&mut self, event: String)
pub fn duration(&mut self, duration: String)
pub fn progress(&mut self, progress: String)
pub fn improvements(&mut self, improvements: String)
pub fn timestamp(&mut self, timestamp: String)
pub fn team(&mut self, team: char)
pub fn other(&mut self, other: String)
pub fn to_vec_values(&self) -> Result<Vec<Value>, Error>
Trait Implementations§
Source§impl Debug for ProgressCheck
impl Debug for ProgressCheck
Source§impl Default for ProgressCheck
impl Default for ProgressCheck
Source§fn default() -> ProgressCheck
fn default() -> ProgressCheck
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProgressCheck
impl<'de> Deserialize<'de> for ProgressCheck
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
Auto Trait Implementations§
impl Freeze for ProgressCheck
impl RefUnwindSafe for ProgressCheck
impl Send for ProgressCheck
impl Sync for ProgressCheck
impl Unpin for ProgressCheck
impl UnwindSafe for ProgressCheck
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> 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