diff options
author | bold <bold@cryptoguru.com> | 2019-12-27 08:03:27 +0100 |
---|---|---|
committer | Wez Furlong <wez@wezfurlong.org> | 2020-01-18 08:40:18 -0800 |
commit | acc3c48d3530af233b5ea213cb8fe26fc15bc74e (patch) | |
tree | 338c6a4023152eadcc2d2fe899afba540feff0d8 | |
parent | 73cda39f9e56da5ded659d7704c235fff6941346 (diff) | |
download | ssh2-rs-acc3c48d3530af233b5ea213cb8fe26fc15bc74e.zip |
derive Debug and Clone for PtyModes
-rw-r--r-- | src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -455,6 +455,7 @@ impl ExtensiblePtyModeOpcode { /// Encodes modes for Pty allocation requests. /// The modes documented in <https://tools.ietf.org/html/rfc4250#section-4.5> /// are supported. +#[derive(Debug, Clone)] pub struct PtyModes { data: Vec<u8>, } |