curl :: CURLInfoDouble :: connect_time
curl :: CURLInfoDouble :: defaultinit
curl :: CURLInfoDouble :: redirect_time
curl :: CURLInfoDouble :: size_download
curl :: CURLInfoDouble :: size_upload
curl :: CURLInfoDouble :: speed_download
curl :: CURLInfoDouble :: speed_upload
curl :: CURLInfoDouble :: total_time
curl $ CURLInfoDouble :: SELF
Type of this instance, automatically specialized in every classcore :: Pointer :: address_is_null
Is the address behind this Object at NULL?core :: Object :: class_factory
Implementation used byget_class to create the specific class.
			curl :: CURLInfoDouble :: connect_time
core :: Object :: defaultinit
curl :: CURLInfoDouble :: defaultinit
core :: Pointer :: defaultinit
core :: Object :: is_same_instance
Return true ifself and other are the same instance (i.e. same identity).
			core :: Object :: is_same_serialized
Isself the same as other in a serialization context?
			core :: Object :: is_same_type
Return true ifself and other have the same dynamic type.
			core :: Object :: output_class_name
Display class name on stdout (debug only).curl :: CURLInfoDouble :: redirect_time
curl :: CURLInfoDouble :: size_download
curl :: CURLInfoDouble :: size_upload
curl :: CURLInfoDouble :: speed_download
curl :: CURLInfoDouble :: speed_upload
curl :: CURLInfoDouble :: total_time
# Reproduce Enum of available CURL Double information, used for NativeCurl.easy_getinfo
extern class CURLInfoDouble `{ CURLINFO `}
	new total_time `{ return CURLINFO_TOTAL_TIME; `}
	new namelookup_time `{ return CURLINFO_NAMELOOKUP_TIME; `}
	new connect_time `{ return CURLINFO_CONNECT_TIME; `}
	new appconnect_time `{ return CURLINFO_APPCONNECT_TIME; `}
	new pretransfer_time `{ return CURLINFO_PRETRANSFER_TIME; `}
	new starttransfer_time `{ return CURLINFO_STARTTRANSFER_TIME; `}
	new redirect_time `{ return CURLINFO_REDIRECT_TIME; `}
	new size_upload `{ return CURLINFO_SIZE_UPLOAD; `}
	new size_download `{ return CURLINFO_SIZE_DOWNLOAD; `}
	new speed_download `{ return CURLINFO_SPEED_DOWNLOAD; `}
	new speed_upload `{ return CURLINFO_SPEED_UPLOAD; `}
	new content_length_download `{ return CURLINFO_CONTENT_LENGTH_DOWNLOAD; `}
	new content_length_upload `{ return CURLINFO_CONTENT_LENGTH_UPLOAD; `}
end
					lib/curl/native_curl.nit:383,1--398,3