#[repr(C)]pub struct sftp_file_struct {
pub sftp: sftp_session,
pub name: *mut c_char,
pub offset: u64,
pub handle: ssh_string,
pub eof: c_int,
pub nonblocking: c_int,
}
Fields§
§sftp: sftp_session
§name: *mut c_char
§offset: u64
§handle: ssh_string
§eof: c_int
§nonblocking: c_int
Trait Implementations§
Source§impl Clone for sftp_file_struct
impl Clone for sftp_file_struct
Source§fn clone(&self) -> sftp_file_struct
fn clone(&self) -> sftp_file_struct
Returns a copy 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 sftp_file_struct
impl Debug for sftp_file_struct
impl Copy for sftp_file_struct
Auto Trait Implementations§
impl Freeze for sftp_file_struct
impl RefUnwindSafe for sftp_file_struct
impl !Send for sftp_file_struct
impl !Sync for sftp_file_struct
impl Unpin for sftp_file_struct
impl UnwindSafe for sftp_file_struct
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