pub struct NormalizedFile(/* private fields */);
Expand description
A normalized File
The underlying file can’t be exposed in a mutable way. Any change to the normalized format would “denormalize” it.
The NormalizedFile
can be used to calculate the DSDL signature
Implementations§
Trait Implementations§
Source§impl Clone for NormalizedFile
impl Clone for NormalizedFile
Source§fn clone(&self) -> NormalizedFile
fn clone(&self) -> NormalizedFile
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 NormalizedFile
impl Debug for NormalizedFile
Source§impl Display for NormalizedFile
impl Display for NormalizedFile
Source§impl PartialEq for NormalizedFile
impl PartialEq for NormalizedFile
impl Eq for NormalizedFile
impl StructuralPartialEq for NormalizedFile
Auto Trait Implementations§
impl Freeze for NormalizedFile
impl RefUnwindSafe for NormalizedFile
impl Send for NormalizedFile
impl Sync for NormalizedFile
impl Unpin for NormalizedFile
impl UnwindSafe for NormalizedFile
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