pub struct BranchResult {
pub branch_id: String,
pub task_id: String,
pub status: WorkflowRunStatus,
pub usage: WorkflowUsage,
pub memo_usage: WorkflowMemoUsage,
pub artifacts: Vec<String>,
pub notes: Option<String>,
}Fields§
§branch_id: String§task_id: String§status: WorkflowRunStatus§usage: WorkflowUsage§memo_usage: WorkflowMemoUsage§artifacts: Vec<String>§notes: Option<String>Trait Implementations§
Source§impl Clone for BranchResult
impl Clone for BranchResult
Source§fn clone(&self) -> BranchResult
fn clone(&self) -> BranchResult
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 BranchResult
impl Debug for BranchResult
Source§impl<'de> Deserialize<'de> for BranchResult
impl<'de> Deserialize<'de> for BranchResult
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
impl Eq for BranchResult
Source§impl PartialEq for BranchResult
impl PartialEq for BranchResult
Source§impl Serialize for BranchResult
impl Serialize for BranchResult
impl StructuralPartialEq for BranchResult
Auto Trait Implementations§
impl Freeze for BranchResult
impl RefUnwindSafe for BranchResult
impl Send for BranchResult
impl Sync for BranchResult
impl Unpin for BranchResult
impl UnsafeUnpin for BranchResult
impl UnwindSafe for BranchResult
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