#[repr(u32)]pub enum ssh_channel_requests_e {
SSH_CHANNEL_REQUEST_UNKNOWN = 0,
SSH_CHANNEL_REQUEST_PTY = 1,
SSH_CHANNEL_REQUEST_EXEC = 2,
SSH_CHANNEL_REQUEST_SHELL = 3,
SSH_CHANNEL_REQUEST_ENV = 4,
SSH_CHANNEL_REQUEST_SUBSYSTEM = 5,
SSH_CHANNEL_REQUEST_WINDOW_CHANGE = 6,
SSH_CHANNEL_REQUEST_X11 = 7,
}Variants§
SSH_CHANNEL_REQUEST_UNKNOWN = 0
SSH_CHANNEL_REQUEST_PTY = 1
SSH_CHANNEL_REQUEST_EXEC = 2
SSH_CHANNEL_REQUEST_SHELL = 3
SSH_CHANNEL_REQUEST_ENV = 4
SSH_CHANNEL_REQUEST_SUBSYSTEM = 5
SSH_CHANNEL_REQUEST_WINDOW_CHANGE = 6
SSH_CHANNEL_REQUEST_X11 = 7
Trait Implementations§
Source§impl Clone for ssh_channel_requests_e
impl Clone for ssh_channel_requests_e
Source§fn clone(&self) -> ssh_channel_requests_e
fn clone(&self) -> ssh_channel_requests_e
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ssh_channel_requests_e
impl Debug for ssh_channel_requests_e
Source§impl Hash for ssh_channel_requests_e
impl Hash for ssh_channel_requests_e
Source§impl PartialEq for ssh_channel_requests_e
impl PartialEq for ssh_channel_requests_e
impl Copy for ssh_channel_requests_e
impl Eq for ssh_channel_requests_e
impl StructuralPartialEq for ssh_channel_requests_e
Auto Trait Implementations§
impl Freeze for ssh_channel_requests_e
impl RefUnwindSafe for ssh_channel_requests_e
impl Send for ssh_channel_requests_e
impl Sync for ssh_channel_requests_e
impl Unpin for ssh_channel_requests_e
impl UnwindSafe for ssh_channel_requests_e
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more