pub enum PipelineRunCommand {
Manual {
requested_by: Option<String>,
},
Scheduled {
schedule_id: String,
},
Event {
event: String,
payload: Value,
},
}Variants§
Trait Implementations§
Source§impl Clone for PipelineRunCommand
impl Clone for PipelineRunCommand
Source§fn clone(&self) -> PipelineRunCommand
fn clone(&self) -> PipelineRunCommand
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PipelineRunCommand
impl Debug for PipelineRunCommand
Source§impl<'de> Deserialize<'de> for PipelineRunCommand
impl<'de> Deserialize<'de> for PipelineRunCommand
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 PipelineRunCommand
impl PartialEq for PipelineRunCommand
Source§fn eq(&self, other: &PipelineRunCommand) -> bool
fn eq(&self, other: &PipelineRunCommand) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PipelineRunCommand
impl Serialize for PipelineRunCommand
impl StructuralPartialEq for PipelineRunCommand
Auto Trait Implementations§
impl Freeze for PipelineRunCommand
impl RefUnwindSafe for PipelineRunCommand
impl Send for PipelineRunCommand
impl Sync for PipelineRunCommand
impl Unpin for PipelineRunCommand
impl UnsafeUnpin for PipelineRunCommand
impl UnwindSafe for PipelineRunCommand
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