Struct atuin_server_database::models::History
source · pub struct History {
pub id: i64,
pub client_id: String,
pub user_id: i64,
pub hostname: String,
pub timestamp: OffsetDateTime,
pub data: String,
pub created_at: OffsetDateTime,
}Fields§
§id: i64§client_id: String§user_id: i64§hostname: String§timestamp: OffsetDateTime§data: StringAll the data we have about this command, encrypted.
Currently this is an encrypted msgpack object, but this may change in the future.
created_at: OffsetDateTimeAuto Trait Implementations§
impl RefUnwindSafe for History
impl Send for History
impl Sync for History
impl Unpin for History
impl UnwindSafe for History
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