Method: OvirtSDK4::HttpRequest#to_s
- Defined in:
- ext/ovirtsdk4c/ov_http_request.c
#to_s ⇒ Object
303 304 305 306 307 308 309 310 311 312 313 |
# File 'ext/ovirtsdk4c/ov_http_request.c', line 303
static VALUE ov_http_request_inspect(VALUE self) {
ov_http_request_object* ptr;
ov_http_request_ptr(self, ptr);
return rb_sprintf(
"#<%" PRIsVALUE ":%" PRIsVALUE " %" PRIsVALUE ">",
ov_http_request_class,
ptr->method,
ptr->url
);
}
|