pub struct TimestampSuffix {
pub timestamp: String,
pub number: Option<usize>,
}
Expand description
Structured representation of the suffixes of AppendTimestamp.
Fields§
§timestamp: String
The timestamp
number: Option<usize>
Optional number suffix if two timestamp suffixes are the same
Trait Implementations§
Source§impl Clone for TimestampSuffix
impl Clone for TimestampSuffix
Source§fn clone(&self) -> TimestampSuffix
fn clone(&self) -> TimestampSuffix
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 TimestampSuffix
impl Debug for TimestampSuffix
Source§impl Display for TimestampSuffix
impl Display for TimestampSuffix
Source§impl Ord for TimestampSuffix
impl Ord for TimestampSuffix
Source§impl PartialEq for TimestampSuffix
impl PartialEq for TimestampSuffix
Source§impl PartialOrd for TimestampSuffix
impl PartialOrd for TimestampSuffix
Source§impl Representation for TimestampSuffix
impl Representation for TimestampSuffix
impl Eq for TimestampSuffix
impl StructuralPartialEq for TimestampSuffix
Auto Trait Implementations§
impl Freeze for TimestampSuffix
impl RefUnwindSafe for TimestampSuffix
impl Send for TimestampSuffix
impl Sync for TimestampSuffix
impl Unpin for TimestampSuffix
impl UnwindSafe for TimestampSuffix
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