pub struct DeployRequest {
pub source: String,
pub filename: String,
pub backend: String,
}Expand description
Deploy request payload.
Fields§
§source: StringAXON source code to compile and deploy.
filename: StringOptional filename for error messages.
backend: StringDeploy-scoped execution backend. §Fase 36.e (D3) — when set to
an explicit, concrete value this becomes the declared backend
for every deployed axonendpoint route that did not declare
its own backend:. The default is "auto" (transparent — the
routes resolve down the Fase 36 D1 ladder; D5 forbids a silent
degradation to a no-op). Pre-36 the default was "anthropic",
but the dynamic-route execution path never consulted this
field, so the change cannot regress a working deploy (D9).
Trait Implementations§
Source§impl Debug for DeployRequest
impl Debug for DeployRequest
Source§impl<'de> Deserialize<'de> for DeployRequest
impl<'de> Deserialize<'de> for DeployRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DeployRequest
impl RefUnwindSafe for DeployRequest
impl Send for DeployRequest
impl Sync for DeployRequest
impl Unpin for DeployRequest
impl UnsafeUnpin for DeployRequest
impl UnwindSafe for DeployRequest
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
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.