pub enum WatchStartedAction {
Started,
}
Expand description
WatchStartedAction
JSON schema
{
"type": "string",
"enum": [
"started"
]
}
Variants§
Started
Trait Implementations§
Source§impl Clone for WatchStartedAction
impl Clone for WatchStartedAction
Source§fn clone(&self) -> WatchStartedAction
fn clone(&self) -> WatchStartedAction
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 WatchStartedAction
impl Debug for WatchStartedAction
Source§impl<'de> Deserialize<'de> for WatchStartedAction
impl<'de> Deserialize<'de> for WatchStartedAction
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 From<&WatchStartedAction> for WatchStartedAction
impl From<&WatchStartedAction> for WatchStartedAction
Source§fn from(value: &WatchStartedAction) -> Self
fn from(value: &WatchStartedAction) -> Self
Converts to this type from the input type.
Source§impl FromStr for WatchStartedAction
impl FromStr for WatchStartedAction
Source§impl Hash for WatchStartedAction
impl Hash for WatchStartedAction
Source§impl Ord for WatchStartedAction
impl Ord for WatchStartedAction
Source§fn cmp(&self, other: &WatchStartedAction) -> Ordering
fn cmp(&self, other: &WatchStartedAction) -> 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 WatchStartedAction
impl PartialEq for WatchStartedAction
Source§impl PartialOrd for WatchStartedAction
impl PartialOrd for WatchStartedAction
Source§impl Serialize for WatchStartedAction
impl Serialize for WatchStartedAction
Source§impl ToString for WatchStartedAction
impl ToString for WatchStartedAction
Source§impl TryFrom<&String> for WatchStartedAction
impl TryFrom<&String> for WatchStartedAction
Source§impl TryFrom<&str> for WatchStartedAction
impl TryFrom<&str> for WatchStartedAction
Source§impl TryFrom<String> for WatchStartedAction
impl TryFrom<String> for WatchStartedAction
impl Copy for WatchStartedAction
impl Eq for WatchStartedAction
impl StructuralPartialEq for WatchStartedAction
Auto Trait Implementations§
impl Freeze for WatchStartedAction
impl RefUnwindSafe for WatchStartedAction
impl Send for WatchStartedAction
impl Sync for WatchStartedAction
impl Unpin for WatchStartedAction
impl UnwindSafe for WatchStartedAction
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