[−][src]Enum dicom_encoding::transfer_syntax::Codec
A description and possible implementation regarding the encoding and decoding requirements of a transfer syntax. This is also used as a means to describe whether pixel data is encapsulated and whether this implementation supports it.
Variants
No codec is given, nor is it required.
Custom encoding and decoding of the entire data set is required, but not supported. This could be used by a stub of Deflated Explicit VR Little Endian, for example.
Custom encoding and decoding of the pixel data set is required, but not supported. The program should still be able to parse DICOM data sets and fetch the pixel data in its encapsulated form.
A pixel data encapsulation codec is required and provided for reading and writing pixel data.
A full, custom data set codec is required and provided.
Trait Implementations
impl<A: Clone> Clone for Codec<A>
[src]
impl<A: Debug> Debug for Codec<A>
[src]
impl<A: PartialEq> PartialEq<Codec<A>> for Codec<A>
[src]
impl<A> StructuralPartialEq for Codec<A>
[src]
Auto Trait Implementations
impl<A> RefUnwindSafe for Codec<A> where
A: RefUnwindSafe,
A: RefUnwindSafe,
impl<A> Send for Codec<A> where
A: Send,
A: Send,
impl<A> Sync for Codec<A> where
A: Sync,
A: Sync,
impl<A> Unpin for Codec<A> where
A: Unpin,
A: Unpin,
impl<A> UnwindSafe for Codec<A> where
A: UnwindSafe,
A: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,