You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
When calling the setters on FileOptions, the original one is not modified because the struct is Copy and thus the method is called with an implicit copy and not a reference to the original one.
The text was updated successfully, but these errors were encountered:
When using the
raw_copy_file_rename
method (and theraw_copy_file
method that call it), the permission are not copied.The issue is with this line:
https://github.com/zip-rs/zip/blob/7edf2489d5cff8b80f02ee6fc5febf3efd0a9442/src/write.rs#L610
When calling the setters on
FileOptions
, the original one is not modified because thestruct
isCopy
and thus the method is called with an implicit copy and not a reference to the original one.The text was updated successfully, but these errors were encountered: