Method: Encoding::UndefinedConversionError#destination_encoding
- Defined in:
- transcode.c
#destination_encoding ⇒ String
Returns the destination encoding as an encoding object.
4344 4345 4346 4347 4348 |
# File 'transcode.c', line 4344
static VALUE
ecerr_destination_encoding(VALUE self)
{
return rb_attr_get(self, id_destination_encoding);
}
|