1 2 3 4 5 6 7 8 9 10 11
use super::{impl_packet_for, impl_request_id, Packet, RequestId}; /// Implementation for `SSH_FXP_CLOSE` #[derive(Debug, Serialize, Deserialize)] pub struct Close { pub id: u32, pub handle: String, } impl_request_id!(Close); impl_packet_for!(Close);