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§fn clone(&self) -> SessionsForkResult
fn clone(&self) -> SessionsForkResult
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 SessionsForkResult
impl Debug for SessionsForkResult
Source§impl Default for SessionsForkResult
impl Default for SessionsForkResult
Source§fn default() -> SessionsForkResult
fn default() -> SessionsForkResult
Returns the “default value” for a type. Read more
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