[][src]Struct dicom_core::header::Length

pub struct Length(pub u32);

A type for representing data set content length, in bytes. An internal value of 0xFFFF_FFFF represents an undefined (unspecified) length, which would have to be determined with a traversal based on the content's encoding.

This also means that numeric comparisons and arithmetic do not function the same way as primitive number types:

Two length of undefined length are not equal.

assert_ne!(Length::UNDEFINED, Length::UNDEFINED);

Any addition or substraction with at least one undefined length results in an undefined length.

assert!((Length::defined(64) + Length::UNDEFINED).is_undefined());
assert!((Length::UNDEFINED + 8).is_undefined());

Comparing between at least one undefined length is always false.

assert!(Length::defined(16) < Length::defined(64));
assert!(!(Length::UNDEFINED < Length::defined(64)));
assert!(!(Length::UNDEFINED > Length::defined(64)));

assert!(!(Length::UNDEFINED < Length::UNDEFINED));
assert!(!(Length::UNDEFINED > Length::UNDEFINED));
assert!(!(Length::UNDEFINED <= Length::UNDEFINED));
assert!(!(Length::UNDEFINED >= Length::UNDEFINED));

Implementations

impl Length[src]

pub const UNDEFINED: Self[src]

A length that is undefined.

pub fn new(len: u32) -> Self[src]

Create a new length value from its internal representation. This is equivalent to Length(len).

pub fn defined(len: u32) -> Self[src]

Create a new length value with the given number of bytes.

Panic

This function will panic if len represents an undefined length.

impl Length[src]

pub fn is_undefined(self) -> bool[src]

Check whether this length is undefined (unknown).

pub fn is_defined(self) -> bool[src]

Check whether this length is well defined (not undefined).

pub fn get(self) -> Option<u32>[src]

Fetch the concrete length value, if available. Returns None if it represents an undefined length.

pub fn inner_eq(self, other: Length) -> bool[src]

Check whether the length is equally specified as another length. Unlike the implemented PartialEq, two undefined lengths are considered equivalent by this method.

Trait Implementations

impl Add<Length> for Length[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<i32> for Length[src]

type Output = Self

The resulting type after applying the + operator.

impl Clone for Length[src]

impl Copy for Length[src]

impl Debug for Length[src]

impl Display for Length[src]

impl From<u32> for Length[src]

impl PartialEq<Length> for Length[src]

impl PartialOrd<Length> for Length[src]

impl Sub<Length> for Length[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<i32> for Length[src]

type Output = Self

The resulting type after applying the - operator.

impl SubAssign<Length> for Length[src]

impl SubAssign<i32> for Length[src]

Auto Trait Implementations

impl RefUnwindSafe for Length

impl Send for Length

impl Sync for Length

impl Unpin for Length

impl UnwindSafe for Length

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.