pub struct AgentPhaseChangeParams<'a> {
pub branch: &'a str,
pub parent_hash: Option<&'a str>,
pub session_id: &'a str,
pub label: Option<&'a str>,
pub from: &'a str,
pub to: &'a str,
pub issue: Option<u64>,
pub confidence: f32,
pub signals: &'a [String],
}Expand description
Parameters for creating an agent_phase_change event.
Fields§
§branch: &'a str§parent_hash: Option<&'a str>§session_id: &'a str§label: Option<&'a str>§from: &'a str§to: &'a str§issue: Option<u64>§confidence: f32§signals: &'a [String]Auto Trait Implementations§
impl<'a> Freeze for AgentPhaseChangeParams<'a>
impl<'a> RefUnwindSafe for AgentPhaseChangeParams<'a>
impl<'a> Send for AgentPhaseChangeParams<'a>
impl<'a> Sync for AgentPhaseChangeParams<'a>
impl<'a> Unpin for AgentPhaseChangeParams<'a>
impl<'a> UnsafeUnpin for AgentPhaseChangeParams<'a>
impl<'a> UnwindSafe for AgentPhaseChangeParams<'a>
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