pub struct SessionsOpenProgress {
pub message: Option<String>,
pub status: SessionsOpenProgressStatus,
pub step: SessionsOpenProgressStep,
}Expand description
sessions.open handoff progress update with step, status, and optional message.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§message: Option<String>Optional step message.
status: SessionsOpenProgressStatusStep status.
step: SessionsOpenProgressStepHandoff step.
Trait Implementations§
Source§impl Clone for SessionsOpenProgress
impl Clone for SessionsOpenProgress
Source§impl Debug for SessionsOpenProgress
impl Debug for SessionsOpenProgress
Source§impl Default for SessionsOpenProgress
impl Default for SessionsOpenProgress
Source§impl<'de> Deserialize<'de> for SessionsOpenProgress
impl<'de> Deserialize<'de> for SessionsOpenProgress
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
Auto Trait Implementations§
impl Freeze for SessionsOpenProgress
impl RefUnwindSafe for SessionsOpenProgress
impl Send for SessionsOpenProgress
impl Sync for SessionsOpenProgress
impl Unpin for SessionsOpenProgress
impl UnsafeUnpin for SessionsOpenProgress
impl UnwindSafe for SessionsOpenProgress
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