Method: Encoding::UndefinedConversionError#destination_encoding_name
- Defined in:
- transcode.c
#destination_encoding_name ⇒ String
Returns the destination encoding name as a string.
4332 4333 4334 4335 4336 |
# File 'transcode.c', line 4332
static VALUE
ecerr_destination_encoding_name(VALUE self)
{
return rb_attr_get(self, id_destination_encoding_name);
}
|