pub struct SessionStartResult {
pub task: String,
pub session_id: String,
pub tmp_dir: Option<String>,
}
Expand description
Results for session_start
command
Fields§
§task: String
§session_id: String
Internal identification of the session object within the server process
tmp_dir: Option<String>
Temporary directory that is specifically cre- ated for this session and deleted after it has been stopped. As tmp_dir is the default master_dir for commands use_theories and purge_theories, theory files copied there may be used without further path specification.
Trait Implementations§
Source§impl Debug for SessionStartResult
impl Debug for SessionStartResult
Source§impl<'de> Deserialize<'de> for SessionStartResult
impl<'de> Deserialize<'de> for SessionStartResult
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 SessionStartResult
impl RefUnwindSafe for SessionStartResult
impl Send for SessionStartResult
impl Sync for SessionStartResult
impl Unpin for SessionStartResult
impl UnwindSafe for SessionStartResult
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