pub struct SessionsForkResult {
pub name: Option<String>,
pub session_id: SessionId,
}Expand description
Identifier and optional friendly name assigned to the newly forked session.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§name: Option<String>Friendly name assigned to the forked session, if any.
session_id: SessionIdThe new forked session’s ID
Trait Implementations§
Source§impl Clone for SessionsForkResult
impl Clone for SessionsForkResult
Source§impl Debug for SessionsForkResult
impl Debug for SessionsForkResult
Source§impl Default for SessionsForkResult
impl Default for SessionsForkResult
Source§impl<'de> Deserialize<'de> for SessionsForkResult
impl<'de> Deserialize<'de> for SessionsForkResult
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 SessionsForkResult
impl RefUnwindSafe for SessionsForkResult
impl Send for SessionsForkResult
impl Sync for SessionsForkResult
impl Unpin for SessionsForkResult
impl UnsafeUnpin for SessionsForkResult
impl UnwindSafe for SessionsForkResult
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