pub struct AppendTimestamp {
    pub format: &'static str,
    pub file_limit: FileLimit,
}
Expand description

Append current timestamp as suffix when rotating files. If the timestamp already exists, an additional number is appended.

Current limitations:

  • Neither format nor the base filename can include the character ".".
  • The format should ensure that the lexical and chronological orderings are the same

Fields

format: &'static str

The format of the timestamp suffix

file_limit: FileLimit

The file limit, e.g. when to delete an old file - by age (given by suffix) or by number of files

Implementations

With format "%Y%m%dT%H%M%S"

Create new AppendTimestamp suffix scheme

Trait Implementations

The representation of suffixes that this suffix scheme uses. E.g. if the suffix is a number, you can use usize. Read more

file-rotate calls this function when the file at suffix needs to be rotated, and moves the log file accordingly. Thus, this function should not move any files itself. Read more

Parse suffix from string.

Whether either the suffix or the chronological file number indicates that the file is old and should be deleted, depending of course on the file limit. file_number starts at 0 for the most recent suffix. Read more

Find all files in the basepath.parent() directory that has path equal to basepath + a valid suffix. Return sorted collection - sorted from most recent to oldest based on the Ord implementation of Self::Repr. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.