pub struct WebdevDeployResult {
pub project: String,
pub routes: Vec<String>,
pub script_exec: bool,
pub secret_rotated: bool,
pub import: Value,
}Expand description
ign webdev deploy result — ALL keys always (the agent shape);
the import answer rides as the opaque-success object verbatim.
The secret appears in NONE of them (redaction).
Fields§
§project: StringThe project the bundle deployed into.
routes: Vec<String>Route folder names deployed, manifest order (+ scriptExec when it shipped).
script_exec: boolWhether scriptExec rode the deploy.
secret_rotated: boolWhether a NEW secret was generated and persisted (first
scriptExec deploy or --rotate-secret).
import: ValueThe import endpoint’s opaque answer (the 03-02
{"status":"success"}-normalized object).
Trait Implementations§
Source§impl Debug for WebdevDeployResult
impl Debug for WebdevDeployResult
Auto Trait Implementations§
impl Freeze for WebdevDeployResult
impl RefUnwindSafe for WebdevDeployResult
impl Send for WebdevDeployResult
impl Sync for WebdevDeployResult
impl Unpin for WebdevDeployResult
impl UnsafeUnpin for WebdevDeployResult
impl UnwindSafe for WebdevDeployResult
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