pub struct DcmConfig {
pub max_value_size: u64,
pub accept_unknown_tags: bool,
pub use_dictionary: bool,
pub default_charset: String,
}Expand description
Global DICOM configuration.
Fields§
§max_value_size: u64Maximum size of a single value to load into memory (bytes). Larger values are read on demand. Default: 4 MiB.
Whether to accept unknown (private) tags during parsing.
use_dictionary: boolWhether to use the data dictionary for VR lookup during implicit VR parsing.
default_charset: StringDefault character set when Specific Character Set (0008,0005) is absent.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DcmConfig
impl RefUnwindSafe for DcmConfig
impl Send for DcmConfig
impl Sync for DcmConfig
impl Unpin for DcmConfig
impl UnsafeUnpin for DcmConfig
impl UnwindSafe for DcmConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more