pub struct DataElement {
pub tag: (u16, u16),
pub vr: [u8; 2],
pub length: u32,
pub value: Vec<u8>,
}Fields§
§tag: (u16, u16)§vr: [u8; 2]§length: u32§value: Vec<u8>Trait Implementations§
Source§impl Clone for DataElement
impl Clone for DataElement
Source§fn clone(&self) -> DataElement
fn clone(&self) -> DataElement
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for DataElement
impl RefUnwindSafe for DataElement
impl Send for DataElement
impl Sync for DataElement
impl Unpin for DataElement
impl UnwindSafe for DataElement
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