Enum dicom_dump::DumpFormat
source · [−]#[non_exhaustive]
pub enum DumpFormat {
Main,
}Expand description
An enum of all supported output formats for dumping DICOM data.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Main
The main DICOM dump format adopted by the project.
It is primarily designed to be human readable, although its output can be used to recover the original object in its uncut form (no limit width). It makes a distinction between single value and multi-value elements, and displays the tag, alias, and VR of each element.
Note that this format is not stabilized, and may change with subsequent versions of the crate.
Trait Implementations
sourceimpl Clone for DumpFormat
impl Clone for DumpFormat
sourcefn clone(&self) -> DumpFormat
fn clone(&self) -> DumpFormat
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DumpFormat
impl Debug for DumpFormat
sourceimpl Default for DumpFormat
impl Default for DumpFormat
The main output format is used by default.
sourceimpl Hash for DumpFormat
impl Hash for DumpFormat
sourceimpl PartialEq<DumpFormat> for DumpFormat
impl PartialEq<DumpFormat> for DumpFormat
impl Copy for DumpFormat
impl Eq for DumpFormat
impl StructuralEq for DumpFormat
impl StructuralPartialEq for DumpFormat
Auto Trait Implementations
impl RefUnwindSafe for DumpFormat
impl Send for DumpFormat
impl Sync for DumpFormat
impl Unpin for DumpFormat
impl UnwindSafe for DumpFormat
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more