pub struct SessionEvent {
pub session_key: String,
pub session_id: String,
pub kind: EventKind,
pub text: String,
pub cwd: String,
pub source_file_path: PathBuf,
pub source_line_number: usize,
pub source_timestamp: Option<String>,
}Fields§
§session_key: String§session_id: String§kind: EventKind§text: String§cwd: String§source_file_path: PathBuf§source_line_number: usize§source_timestamp: Option<String>Trait Implementations§
Source§impl Clone for SessionEvent
impl Clone for SessionEvent
Source§fn clone(&self) -> SessionEvent
fn clone(&self) -> SessionEvent
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 SessionEvent
impl Debug for SessionEvent
Source§impl PartialEq for SessionEvent
impl PartialEq for SessionEvent
impl Eq for SessionEvent
impl StructuralPartialEq for SessionEvent
Auto Trait Implementations§
impl Freeze for SessionEvent
impl RefUnwindSafe for SessionEvent
impl Send for SessionEvent
impl Sync for SessionEvent
impl Unpin for SessionEvent
impl UnsafeUnpin for SessionEvent
impl UnwindSafe for SessionEvent
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