structstd.zip.ExtractOptions[src]

Fields

allow_backslashes: bool = false

Allow filenames within the zip to use backslashes. Back slashes are normalized to forward slashes before forwarding them to platform APIs.

diagnostics: ?*Diagnostics = null

Source Code

Source code
pub const ExtractOptions = struct {
    /// Allow filenames within the zip to use backslashes.  Back slashes are normalized
    /// to forward slashes before forwarding them to platform APIs.
    allow_backslashes: bool = false,

    diagnostics: ?*Diagnostics = null,
}