pub struct JsonlSessionMetadata {
pub base: SessionMetadata,
pub cwd: String,
pub path: String,
pub parent_session_path: Option<String>,
pub imported_from: Option<SessionImportOrigin>,
pub binding: Option<SessionBinding>,
pub collapse_node_id: Option<String>,
pub collapsed: Option<bool>,
}Fields§
§base: SessionMetadata§cwd: String§path: String§parent_session_path: Option<String>§imported_from: Option<SessionImportOrigin>§binding: Option<SessionBinding>§collapse_node_id: Option<String>§collapsed: Option<bool>Trait Implementations§
Source§impl Clone for JsonlSessionMetadata
impl Clone for JsonlSessionMetadata
Source§fn clone(&self) -> JsonlSessionMetadata
fn clone(&self) -> JsonlSessionMetadata
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 JsonlSessionMetadata
impl Debug for JsonlSessionMetadata
Source§impl<'de> Deserialize<'de> for JsonlSessionMetadata
impl<'de> Deserialize<'de> for JsonlSessionMetadata
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<JsonlSessionMetadata, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<JsonlSessionMetadata, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for JsonlSessionMetadata
impl Serialize for JsonlSessionMetadata
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for JsonlSessionMetadata
impl RefUnwindSafe for JsonlSessionMetadata
impl Send for JsonlSessionMetadata
impl Sync for JsonlSessionMetadata
impl Unpin for JsonlSessionMetadata
impl UnsafeUnpin for JsonlSessionMetadata
impl UnwindSafe for JsonlSessionMetadata
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