pub struct HistoryLine {
pub id: String,
pub seq: u64,
pub label: Option<String>,
pub op_kind: Option<String>,
pub timestamp_ms: Option<u128>,
}Expand description
One line in a history listing (maps 1-to-1 to a Tier-2
HistoryRecord).
Fields§
§id: StringStable record id.
seq: u64Monotonic sequence number (0-based).
label: Option<String>Optional human-facing label / version name.
op_kind: Option<String>Optional operation-kind tag (e.g. "tx.apply", "library.add").
timestamp_ms: Option<u128>Optional unix-ms timestamp.
Trait Implementations§
Source§impl Clone for HistoryLine
impl Clone for HistoryLine
Source§fn clone(&self) -> HistoryLine
fn clone(&self) -> HistoryLine
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HistoryLine
impl Debug for HistoryLine
Source§impl PartialEq for HistoryLine
impl PartialEq for HistoryLine
Source§fn eq(&self, other: &HistoryLine) -> bool
fn eq(&self, other: &HistoryLine) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for HistoryLine
Auto Trait Implementations§
impl Freeze for HistoryLine
impl RefUnwindSafe for HistoryLine
impl Send for HistoryLine
impl Sync for HistoryLine
impl Unpin for HistoryLine
impl UnsafeUnpin for HistoryLine
impl UnwindSafe for HistoryLine
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
Source§fn to_owned_obj(&self, data: FontData<'_>) -> U
fn to_owned_obj(&self, data: FontData<'_>) -> U
Convert this type into
T, using the provided data to resolve any offsets.