pub struct CatalogFileCombineResult {
pub output_path: PathBuf,
pub format: CatalogFileFormat,
pub stats: CatalogCombineStats,
pub diagnostics: Vec<Diagnostic>,
}Available on crate feature
catalog only.Expand description
Result returned by catalog file combine operations.
Fields§
§output_path: PathBufOutput path replaced by the operation.
format: CatalogFileFormatFile format used for reading inputs and writing the output.
stats: CatalogCombineStatsSummary counters for the operation.
diagnostics: Vec<Diagnostic>Non-fatal diagnostics collected during processing.
Trait Implementations§
Source§impl Clone for CatalogFileCombineResult
impl Clone for CatalogFileCombineResult
Source§fn clone(&self) -> CatalogFileCombineResult
fn clone(&self) -> CatalogFileCombineResult
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 CatalogFileCombineResult
impl Debug for CatalogFileCombineResult
impl Eq for CatalogFileCombineResult
Source§impl PartialEq for CatalogFileCombineResult
impl PartialEq for CatalogFileCombineResult
Source§fn eq(&self, other: &CatalogFileCombineResult) -> bool
fn eq(&self, other: &CatalogFileCombineResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CatalogFileCombineResult
Auto Trait Implementations§
impl Freeze for CatalogFileCombineResult
impl RefUnwindSafe for CatalogFileCombineResult
impl Send for CatalogFileCombineResult
impl Sync for CatalogFileCombineResult
impl Unpin for CatalogFileCombineResult
impl UnsafeUnpin for CatalogFileCombineResult
impl UnwindSafe for CatalogFileCombineResult
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