Method: Encoding::UndefinedConversionError#destination_encoding
- Defined in:
- transcode.c
#destination_encoding ⇒ String
Returns the destination encoding as an encoding object.
4283 4284 4285 4286 4287 |
# File 'transcode.c', line 4283
static VALUE
ecerr_destination_encoding(VALUE self)
{
return rb_attr_get(self, rb_intern("destination_encoding"));
}
|