pub struct StaticBuildResult {
pub name: String,
pub file_path: String,
pub success: bool,
}Expand description
Result of a single static build execution.
Fields§
§name: StringName of the axon that was built
file_path: StringPath to the generated JSON file
success: boolWhether the build was successful
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StaticBuildResult
impl RefUnwindSafe for StaticBuildResult
impl Send for StaticBuildResult
impl Sync for StaticBuildResult
impl Unpin for StaticBuildResult
impl UnsafeUnpin for StaticBuildResult
impl UnwindSafe for StaticBuildResult
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