pub struct HistoryItem<ExtraInfo: HistoryItemExtraInfo = IgnoreAllExtraInfo> {
pub id: Option<HistoryItemId>,
pub start_timestamp: Option<DateTime<Utc>>,
pub command_line: String,
pub session_id: Option<HistorySessionId>,
pub hostname: Option<String>,
pub cwd: Option<String>,
pub duration: Option<Duration>,
pub exit_status: Option<i64>,
pub more_info: Option<ExtraInfo>,
}Expand description
Represents one run command with some optional additional context
Fields§
§id: Option<HistoryItemId>primary key, unique across one history
start_timestamp: Option<DateTime<Utc>>date-time when this command was started
command_line: Stringthe full command line as text
session_id: Option<HistorySessionId>a unique id for one shell session. used so the history can be filtered to a single session
hostname: Option<String>the hostname the commands were run in
cwd: Option<String>the current working directory
duration: Option<Duration>the duration the command took to complete
exit_status: Option<i64>the exit status of the command
more_info: Option<ExtraInfo>arbitrary additional information that might be interesting NOTE: this attribute is required because of https://github.com/rust-lang/rust/issues/41617 (see https://github.com/serde-rs/serde/issues/1296#issuecomment-394056188 for the fix)
Implementations§
Source§impl HistoryItem
impl HistoryItem
Sourcepub fn from_command_line(cmd: impl Into<String>) -> HistoryItem
pub fn from_command_line(cmd: impl Into<String>) -> HistoryItem
create a history item purely from the command line with everything else set to None
Trait Implementations§
Source§impl<ExtraInfo: Clone + HistoryItemExtraInfo> Clone for HistoryItem<ExtraInfo>
impl<ExtraInfo: Clone + HistoryItemExtraInfo> Clone for HistoryItem<ExtraInfo>
Source§fn clone(&self) -> HistoryItem<ExtraInfo>
fn clone(&self) -> HistoryItem<ExtraInfo>
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<ExtraInfo: Debug + HistoryItemExtraInfo> Debug for HistoryItem<ExtraInfo>
impl<ExtraInfo: Debug + HistoryItemExtraInfo> Debug for HistoryItem<ExtraInfo>
Source§impl<'de, ExtraInfo: HistoryItemExtraInfo> Deserialize<'de> for HistoryItem<ExtraInfo>
impl<'de, ExtraInfo: HistoryItemExtraInfo> Deserialize<'de> for HistoryItem<ExtraInfo>
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
Source§impl<ExtraInfo: PartialEq + HistoryItemExtraInfo> PartialEq for HistoryItem<ExtraInfo>
impl<ExtraInfo: PartialEq + HistoryItemExtraInfo> PartialEq for HistoryItem<ExtraInfo>
Source§impl<ExtraInfo> Serialize for HistoryItem<ExtraInfo>where
ExtraInfo: Serialize + HistoryItemExtraInfo,
impl<ExtraInfo> Serialize for HistoryItem<ExtraInfo>where
ExtraInfo: Serialize + HistoryItemExtraInfo,
impl<ExtraInfo: Eq + HistoryItemExtraInfo> Eq for HistoryItem<ExtraInfo>
impl<ExtraInfo: HistoryItemExtraInfo> StructuralPartialEq for HistoryItem<ExtraInfo>
Auto Trait Implementations§
impl<ExtraInfo> Freeze for HistoryItem<ExtraInfo>where
ExtraInfo: Freeze,
impl<ExtraInfo> RefUnwindSafe for HistoryItem<ExtraInfo>where
ExtraInfo: RefUnwindSafe,
impl<ExtraInfo> Send for HistoryItem<ExtraInfo>
impl<ExtraInfo> Sync for HistoryItem<ExtraInfo>where
ExtraInfo: Sync,
impl<ExtraInfo> Unpin for HistoryItem<ExtraInfo>where
ExtraInfo: Unpin,
impl<ExtraInfo> UnwindSafe for HistoryItem<ExtraInfo>where
ExtraInfo: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more