pub struct SetupReport {
pub created: Vec<String>,
pub skipped: Vec<String>,
pub failed: Vec<(String, String)>,
}Expand description
Report from a standalone setup creation run.
Fields§
§created: Vec<String>Objects successfully created.
skipped: Vec<String>Objects that already existed and were skipped.
failed: Vec<(String, String)>Objects that failed creation, with error detail.
Trait Implementations§
Source§impl Debug for SetupReport
impl Debug for SetupReport
Source§impl Default for SetupReport
impl Default for SetupReport
Source§fn default() -> SetupReport
fn default() -> SetupReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SetupReport
impl RefUnwindSafe for SetupReport
impl Send for SetupReport
impl Sync for SetupReport
impl Unpin for SetupReport
impl UnsafeUnpin for SetupReport
impl UnwindSafe for SetupReport
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