pub struct SessionNameGetResult {
pub name: Option<String>,
}Expand description
The session’s friendly name, or null when not yet set.
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>The session name (user-set or auto-generated), or null if not yet set
Trait Implementations§
Source§impl Clone for SessionNameGetResult
impl Clone for SessionNameGetResult
Source§fn clone(&self) -> SessionNameGetResult
fn clone(&self) -> SessionNameGetResult
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 SessionNameGetResult
impl Debug for SessionNameGetResult
Source§impl Default for SessionNameGetResult
impl Default for SessionNameGetResult
Source§fn default() -> SessionNameGetResult
fn default() -> SessionNameGetResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionNameGetResult
impl<'de> Deserialize<'de> for SessionNameGetResult
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 SessionNameGetResult
impl RefUnwindSafe for SessionNameGetResult
impl Send for SessionNameGetResult
impl Sync for SessionNameGetResult
impl Unpin for SessionNameGetResult
impl UnsafeUnpin for SessionNameGetResult
impl UnwindSafe for SessionNameGetResult
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