pub struct BindingRequirementsResponse {
pub blueprint_id: String,
pub strict_binding: bool,
pub requirements: Vec<BindRequest>,
}Expand description
Response body for GET /v1/blueprints/:id/binding-requirements.
The declaration-side reverse lookup an operator uses to machine-generate
its capability manifest: one BindRequest per Runner-backed agent,
byte-identical to what binding_requests reconstructs on the launch
path. Read-only and provider-free — nothing here mutates the registry or
calls a binding provider (requirements are pure declarations; attestation
happens only when a Run is dispatched).
Fields§
§blueprint_id: StringBlueprint id (echoed back from the path param).
strict_binding: boolCompilerStrategy.strict_binding for this Blueprint — whether launch
fails closed when a requirement is left unattested.
requirements: Vec<BindRequest>One request per Runner-backed agent, in Blueprint declaration order;
[] when no agent resolves to a Runner.
Trait Implementations§
Source§impl Debug for BindingRequirementsResponse
impl Debug for BindingRequirementsResponse
Source§impl JsonSchema for BindingRequirementsResponse
impl JsonSchema for BindingRequirementsResponse
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for BindingRequirementsResponse
impl RefUnwindSafe for BindingRequirementsResponse
impl Send for BindingRequirementsResponse
impl Sync for BindingRequirementsResponse
impl Unpin for BindingRequirementsResponse
impl UnsafeUnpin for BindingRequirementsResponse
impl UnwindSafe for BindingRequirementsResponse
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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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 more