Struct cab::FileBuilder[][src]

pub struct FileBuilder { /* fields omitted */ }
Expand description

A structure for building a file within a new cabinet.

Implementations

Sets the datetime for this file. According to the CAB spec, this “is typically considered the ‘last modified’ time in local time, but the actual definition is application-defined”.

The CAB file format only supports storing datetimes with years from 1980 to 2107 (inclusive), with a resolution of two seconds. If the given datetime is outside this range/resolution, it will be clamped/rounded to the nearest legal value.

By default, the datetime of a new FileBuilder is the current local date/time.

Sets whether this file has the “read-only” attribute set. This attribute is false by default.

Sets whether this file has the “hidden” attribute set. This attribute is false by default.

Sets whether this file has the “system file” attribute set. This attribute is false by default.

Sets whether this file has the “archive” (modified since last backup) attribute set. This attribute is true by default.

Returns true if this file has the “execute after extraction” attribute set. This attribute is false by default.

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.