pub enum EmptyObject {}
Expand description
Stub type representing a non-existing DICOM object.
This type implements HasLength
, but cannot be instantiated.
This makes it so that Value<EmptyObject>
is sure to be either
a primitive value,
a pixel data fragment sequence,
or a sequence with no items.
Trait Implementations§
Source§impl Clone for EmptyObject
impl Clone for EmptyObject
Source§fn clone(&self) -> EmptyObject
fn clone(&self) -> EmptyObject
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EmptyObject
impl Debug for EmptyObject
Source§impl HasLength for EmptyObject
impl HasLength for EmptyObject
Source§impl Hash for EmptyObject
impl Hash for EmptyObject
Source§impl Ord for EmptyObject
impl Ord for EmptyObject
Source§fn cmp(&self, other: &EmptyObject) -> Ordering
fn cmp(&self, other: &EmptyObject) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EmptyObject
impl PartialEq for EmptyObject
Source§impl PartialOrd for EmptyObject
impl PartialOrd for EmptyObject
impl Copy for EmptyObject
impl Eq for EmptyObject
impl StructuralPartialEq for EmptyObject
Auto Trait Implementations§
impl Freeze for EmptyObject
impl RefUnwindSafe for EmptyObject
impl Send for EmptyObject
impl Sync for EmptyObject
impl Unpin for EmptyObject
impl UnwindSafe for EmptyObject
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more