pub struct GetWorkflowRunRequest {
pub include_graph: Option<bool>,
pub name: String,
pub run_id: String,
}
Fields§
§include_graph: Option<bool>
Specifies whether to include the workflow graph in response or not.
name: String
Name of the workflow being run.
run_id: String
The ID of the workflow run.
Trait Implementations§
Source§impl Clone for GetWorkflowRunRequest
impl Clone for GetWorkflowRunRequest
Source§fn clone(&self) -> GetWorkflowRunRequest
fn clone(&self) -> GetWorkflowRunRequest
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 GetWorkflowRunRequest
impl Debug for GetWorkflowRunRequest
Source§impl Default for GetWorkflowRunRequest
impl Default for GetWorkflowRunRequest
Source§fn default() -> GetWorkflowRunRequest
fn default() -> GetWorkflowRunRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetWorkflowRunRequest
impl PartialEq for GetWorkflowRunRequest
Source§impl Serialize for GetWorkflowRunRequest
impl Serialize for GetWorkflowRunRequest
impl StructuralPartialEq for GetWorkflowRunRequest
Auto Trait Implementations§
impl Freeze for GetWorkflowRunRequest
impl RefUnwindSafe for GetWorkflowRunRequest
impl Send for GetWorkflowRunRequest
impl Sync for GetWorkflowRunRequest
impl Unpin for GetWorkflowRunRequest
impl UnwindSafe for GetWorkflowRunRequest
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