pub struct DescribeCompiledIdsReport {
pub described: Vec<CompiledCatalogIdDescription>,
pub unknown_compiled_ids: Vec<String>,
pub unavailable_compiled_ids: Vec<CompiledCatalogUnavailableId>,
}Expand description
Report returned by CompiledCatalogIdIndex::describe_compiled_ids.
Fields§
§described: Vec<CompiledCatalogIdDescription>Metadata for requested IDs that were known to the index and present in the provided catalogs.
unknown_compiled_ids: Vec<String>Requested compiled IDs that were not known to the index at all.
Requested compiled IDs that were known to the index but not present in the provided catalogs.
Trait Implementations§
Source§impl Clone for DescribeCompiledIdsReport
impl Clone for DescribeCompiledIdsReport
Source§fn clone(&self) -> DescribeCompiledIdsReport
fn clone(&self) -> DescribeCompiledIdsReport
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 DescribeCompiledIdsReport
impl Debug for DescribeCompiledIdsReport
Source§impl Default for DescribeCompiledIdsReport
impl Default for DescribeCompiledIdsReport
Source§fn default() -> DescribeCompiledIdsReport
fn default() -> DescribeCompiledIdsReport
Returns the “default value” for a type. Read more
impl Eq for DescribeCompiledIdsReport
impl StructuralPartialEq for DescribeCompiledIdsReport
Auto Trait Implementations§
impl Freeze for DescribeCompiledIdsReport
impl RefUnwindSafe for DescribeCompiledIdsReport
impl Send for DescribeCompiledIdsReport
impl Sync for DescribeCompiledIdsReport
impl Unpin for DescribeCompiledIdsReport
impl UnsafeUnpin for DescribeCompiledIdsReport
impl UnwindSafe for DescribeCompiledIdsReport
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