pub trait HasLength {
// Required method
fn length(&self) -> Length;
// Provided method
fn is_empty(&self) -> bool { ... }
}
Expand description
Trait for any DICOM entity (element or item) which may have a length.
Required Methods§
Sourcefn length(&self) -> Length
fn length(&self) -> Length
Retrieve the value data’s length as specified by the data element or item, in bytes.
It is named length
to make it distinct from the conventional method
signature len(&self) -> usize
for the number of elements of a
collection.
According to the standard, the concrete value size may be undefined, which can be the case for sequence elements or specific primitive values.