#[repr(C)]pub struct curl_fileinfo {Show 17 fields
pub filename: *mut c_char,
pub filetype: curlfiletype,
pub time: time_t,
pub perm: c_uint,
pub uid: c_int,
pub gid: c_int,
pub size: curl_off_t,
pub hardlinks: c_long,
pub strings_time: *mut c_char,
pub strings_perm: *mut c_char,
pub strings_user: *mut c_char,
pub strings_group: *mut c_char,
pub strings_target: *mut c_char,
pub flags: c_uint,
pub b_data: *mut c_char,
pub b_size: size_t,
pub b_used: size_t,
}Fields§
§filename: *mut c_char§filetype: curlfiletype§time: time_t§perm: c_uint§uid: c_int§gid: c_int§size: curl_off_t§hardlinks: c_long§strings_time: *mut c_char§strings_perm: *mut c_char§strings_user: *mut c_char§strings_group: *mut c_char§strings_target: *mut c_char§flags: c_uint§b_data: *mut c_char§b_size: size_t§b_used: size_tAuto Trait Implementations§
impl Freeze for curl_fileinfo
impl RefUnwindSafe for curl_fileinfo
impl !Send for curl_fileinfo
impl !Sync for curl_fileinfo
impl Unpin for curl_fileinfo
impl UnwindSafe for curl_fileinfo
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