pub struct DevenvImportReport {
pub schema: String,
pub root: PathBuf,
pub mode: DevenvImportMode,
pub detected: DevenvDetectedFiles,
pub source_hashes: BTreeMap<String, String>,
pub items: Vec<DevenvImportItem>,
pub summary: DevenvImportSummary,
pub warnings: Vec<DevenvImportMessage>,
}Fields§
§schema: String§root: PathBuf§mode: DevenvImportMode§detected: DevenvDetectedFiles§source_hashes: BTreeMap<String, String>§items: Vec<DevenvImportItem>§summary: DevenvImportSummary§warnings: Vec<DevenvImportMessage>Trait Implementations§
Source§impl Clone for DevenvImportReport
impl Clone for DevenvImportReport
Source§fn clone(&self) -> DevenvImportReport
fn clone(&self) -> DevenvImportReport
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 DevenvImportReport
impl Debug for DevenvImportReport
Source§impl<'de> Deserialize<'de> for DevenvImportReport
impl<'de> Deserialize<'de> for DevenvImportReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DevenvImportReport
Source§impl PartialEq for DevenvImportReport
impl PartialEq for DevenvImportReport
Source§impl Serialize for DevenvImportReport
impl Serialize for DevenvImportReport
impl StructuralPartialEq for DevenvImportReport
Auto Trait Implementations§
impl Freeze for DevenvImportReport
impl RefUnwindSafe for DevenvImportReport
impl Send for DevenvImportReport
impl Sync for DevenvImportReport
impl Unpin for DevenvImportReport
impl UnsafeUnpin for DevenvImportReport
impl UnwindSafe for DevenvImportReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.