vmm: device_manager: Make PtyPair implement Clone

The clone method for PtyPair should have been an impl of the Clone
trait but the method ended up not being used. Future work will make
use of the trait however so correct the missing trait implementation.

Signed-off-by: William Douglas <william.douglas@intel.com>
This commit is contained in:
William Douglas 2021-09-16 19:36:46 +00:00 committed by Rob Bradford
parent c313bcbfd4
commit d6a2f48b32

View File

@ -766,7 +766,7 @@ pub struct PtyPair {
pub path: PathBuf, pub path: PathBuf,
} }
impl PtyPair { impl Clone for PtyPair {
fn clone(&self) -> Self { fn clone(&self) -> Self {
PtyPair { PtyPair {
main: self.main.try_clone().unwrap(), main: self.main.try_clone().unwrap(),