pub struct EnvFileAnalysis {
pub kind: EnvFileKind,
pub source: Option<String>,
pub bytes: usize,
pub records: Vec<EnvFileRecord>,
pub checks: Vec<Check>,
}Fields§
§kind: EnvFileKind§source: Option<String>§bytes: usize§records: Vec<EnvFileRecord>§checks: Vec<Check>Trait Implementations§
Source§impl Clone for EnvFileAnalysis
impl Clone for EnvFileAnalysis
Source§fn clone(&self) -> EnvFileAnalysis
fn clone(&self) -> EnvFileAnalysis
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EnvFileAnalysis
impl Debug for EnvFileAnalysis
Auto Trait Implementations§
impl Freeze for EnvFileAnalysis
impl RefUnwindSafe for EnvFileAnalysis
impl Send for EnvFileAnalysis
impl Sync for EnvFileAnalysis
impl Unpin for EnvFileAnalysis
impl UnsafeUnpin for EnvFileAnalysis
impl UnwindSafe for EnvFileAnalysis
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