Type Definition libxml::bindings::ftpListCallback[][src]

type ftpListCallback = Option<unsafe extern "C" fn(userData: *mut c_void, filename: *const c_char, attrib: *const c_char, owner: *const c_char, group: *const c_char, size: c_ulong, links: c_int, year: c_int, month: *const c_char, day: c_int, hour: c_int, minute: c_int)>;

ftpListCallback: @userData: user provided data for the callback @filename: the file name (including “->” when links are shown) @attrib: the attribute string @owner: the owner string @group: the group string @size: the file size @links: the link count @year: the year @month: the month @day: the day @hour: the hour @minute: the minute

A callback for the xmlNanoFTPList command. Note that only one of year and day:minute are specified.