pub struct ConfigReport<T> {
pub value: T,
pub warnings: Vec<ConfigDiagnostic>,
pub source: String,
pub locations: SourceLocations,
}Fields§
§value: T§warnings: Vec<ConfigDiagnostic>§source: String§locations: SourceLocationsTrait Implementations§
Source§impl<T: Clone> Clone for ConfigReport<T>
impl<T: Clone> Clone for ConfigReport<T>
Source§fn clone(&self) -> ConfigReport<T>
fn clone(&self) -> ConfigReport<T>
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<T: Debug> Debug for ConfigReport<T>
impl<T: Debug> Debug for ConfigReport<T>
impl<T: Eq> Eq for ConfigReport<T>
Source§impl<T: PartialEq> PartialEq for ConfigReport<T>
impl<T: PartialEq> PartialEq for ConfigReport<T>
impl<T: PartialEq> StructuralPartialEq for ConfigReport<T>
Auto Trait Implementations§
impl<T> Freeze for ConfigReport<T>where
T: Freeze,
impl<T> RefUnwindSafe for ConfigReport<T>where
T: RefUnwindSafe,
impl<T> Send for ConfigReport<T>where
T: Send,
impl<T> Sync for ConfigReport<T>where
T: Sync,
impl<T> Unpin for ConfigReport<T>where
T: Unpin,
impl<T> UnsafeUnpin for ConfigReport<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for ConfigReport<T>where
T: UnwindSafe,
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