pub struct UpdatePipelineStatusRequest {
pub id: String,
pub status: String,
}
Expand description
The UpdatePipelineStatusRequest
structure.
Fields§
§id: String
The identifier of the pipeline to update.
status: String
The desired status of the pipeline:
-
Active
: The pipeline is processing jobs. -
Paused
: The pipeline is not currently processing jobs.
Trait Implementations§
Source§impl Clone for UpdatePipelineStatusRequest
impl Clone for UpdatePipelineStatusRequest
Source§fn clone(&self) -> UpdatePipelineStatusRequest
fn clone(&self) -> UpdatePipelineStatusRequest
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 UpdatePipelineStatusRequest
impl Debug for UpdatePipelineStatusRequest
Source§impl Default for UpdatePipelineStatusRequest
impl Default for UpdatePipelineStatusRequest
Source§fn default() -> UpdatePipelineStatusRequest
fn default() -> UpdatePipelineStatusRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for UpdatePipelineStatusRequest
Auto Trait Implementations§
impl Freeze for UpdatePipelineStatusRequest
impl RefUnwindSafe for UpdatePipelineStatusRequest
impl Send for UpdatePipelineStatusRequest
impl Sync for UpdatePipelineStatusRequest
impl Unpin for UpdatePipelineStatusRequest
impl UnwindSafe for UpdatePipelineStatusRequest
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