pub enum EnvironmentWarning {
LoadFailed {
path: PathBuf,
error: String,
},
YamlDocumentSkipped {
path: PathBuf,
doc_index: usize,
error: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for EnvironmentWarning
impl Clone for EnvironmentWarning
Source§fn clone(&self) -> EnvironmentWarning
fn clone(&self) -> EnvironmentWarning
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 moreSource§impl Debug for EnvironmentWarning
impl Debug for EnvironmentWarning
Auto Trait Implementations§
impl Freeze for EnvironmentWarning
impl RefUnwindSafe for EnvironmentWarning
impl Send for EnvironmentWarning
impl Sync for EnvironmentWarning
impl Unpin for EnvironmentWarning
impl UnwindSafe for EnvironmentWarning
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