pub struct SessionLogIndexEntry {
pub wrapper_session_id: String,
pub provider: String,
pub provider_session_id: Option<String>,
pub log_path: String,
pub completeness: LogCompleteness,
pub started_at: String,
pub ended_at: Option<String>,
pub workspace_path: Option<String>,
pub command: Option<String>,
pub source_paths: Vec<String>,
pub backfilled: bool,
}Fields§
§wrapper_session_id: String§provider: String§provider_session_id: Option<String>§log_path: String§completeness: LogCompleteness§started_at: String§ended_at: Option<String>§workspace_path: Option<String>§command: Option<String>§source_paths: Vec<String>§backfilled: boolTrait Implementations§
Source§impl Clone for SessionLogIndexEntry
impl Clone for SessionLogIndexEntry
Source§fn clone(&self) -> SessionLogIndexEntry
fn clone(&self) -> SessionLogIndexEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 SessionLogIndexEntry
impl Debug for SessionLogIndexEntry
Source§impl<'de> Deserialize<'de> for SessionLogIndexEntry
impl<'de> Deserialize<'de> for SessionLogIndexEntry
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 SessionLogIndexEntry
impl RefUnwindSafe for SessionLogIndexEntry
impl Send for SessionLogIndexEntry
impl Sync for SessionLogIndexEntry
impl Unpin for SessionLogIndexEntry
impl UnsafeUnpin for SessionLogIndexEntry
impl UnwindSafe for SessionLogIndexEntry
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