Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

implement close-semantic for EncWriter / DecWriter #18

Merged
merged 1 commit into from
Jul 29, 2019
Merged

Conversation

aead
Copy link
Member

@aead aead commented Jul 29, 2019

What does the PR do?

This commit implements the close-semantic for
EncWriter and DecWriter such that both implement
the internal Close trait but not the public/exported
Close trait. Instead both provide a close(mut self)
method that has the same semantics as the close
method defined by (both) Close traits but takes ownership
of the EncWriter / DecWriter.

Further any type (std::io::Write) that should be wrapped
with an EncWriter / DecWriter must implement the
(internal) Close trait. Since this is not possible
(the trait is private), we implement the internal
Close trait for any type that implements the public/exported
Close trait. For further details see issue: #17.

Further this commit adds the NopCloser type that can
wrap any std::io::Write and implements Close.

This commit also adds some documentation.

What problem does it solve?

Update #17

This commit implements the close-semantic for
`EncWriter` and `DecWriter` such that both implement
the internal `Close` trait but not the public/exported
`Close` trait. Instead both provide a `close(mut self)`
method that has the same semantics as the `close`
method defined by (both) `Close` traits but takes ownership
of the `EncWriter` / `DecWriter`.

Further any type (`std::io::Write`) that should be wrapped
with an `EncWriter` / `DecWriter` must implement the
(internal) `Close` trait. Since this is not possible
(the trait is private), we implement the internal
`Close` trait for any type that implements the public/exported
`Close` trait. For further details see issue: #17.

Further this commit adds the `NopCloser` type that can
wrap any `std::io::Write` and implements `Close`.

This commit also adds some documentation.

Update #17
@aead aead merged commit da63c14 into master Jul 29, 2019
@aead aead deleted the close-trait branch August 20, 2019 12:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant