pub struct AggregateResult {
pub entries: Vec<AutostartEntry>,
pub errors: Vec<ProviderError>,
}Expand description
The result of aggregating entries across all available providers.
Fields§
§entries: Vec<AutostartEntry>All entries successfully gathered, across providers.
errors: Vec<ProviderError>Per-provider failures, if any. Non-empty does not mean entries is empty.
Trait Implementations§
Source§impl Debug for AggregateResult
impl Debug for AggregateResult
Source§impl Default for AggregateResult
impl Default for AggregateResult
Source§fn default() -> AggregateResult
fn default() -> AggregateResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AggregateResult
impl RefUnwindSafe for AggregateResult
impl Send for AggregateResult
impl Sync for AggregateResult
impl Unpin for AggregateResult
impl UnsafeUnpin for AggregateResult
impl UnwindSafe for AggregateResult
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