Enet4 / dicom-rs

Rust implementation of the DICOM standard

Home Page:https://dicom-rs.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can't set_transfer_syntax in some cases

Enet4 opened this issue · comments

This code won't work in v0.6:

obj.meta_mut().set_transfer_syntax(&dicom_transfer_syntax_registry::entries::IMPLICIT_VR_LITTLE_ENDIAN);

This is because the setter is only generic over 2 of the 3 type parameters in TransferSyntax (they were redesigned in #361).

The user needs to type-erase the transfer syntax explicitly.

obj.meta_mut().set_transfer_syntax(&dicom_transfer_syntax_registry::entries::IMPLICIT_VR_LITTLE_ENDIAN.erased());

Unfortunately, it is considered a breaking change to update this now, considering that there may be method calls with a turbo fish to specify these type parameters.