pub struct HttpTargetRegistryReadiness {
pub target_scheme: TargetEndpointScheme,
pub readiness_path: String,
pub registry_path: String,
pub targets_field: String,
pub target_url_field: String,
pub target_role_field: String,
pub target_healthy_field: String,
pub target_bootstrap_port_field: String,
pub prefill_role_value: String,
pub decode_role_value: String,
pub prefill_bootstrap_port: String,
}Expand description
The integration-owned HTTP registry contract for target-aware readiness.
Fields§
§target_scheme: TargetEndpointScheme§readiness_path: String§registry_path: String§targets_field: String§target_url_field: String§target_role_field: String§target_healthy_field: String§target_bootstrap_port_field: String§prefill_role_value: String§decode_role_value: String§prefill_bootstrap_port: StringTrait Implementations§
Source§impl Clone for HttpTargetRegistryReadiness
impl Clone for HttpTargetRegistryReadiness
Source§fn clone(&self) -> HttpTargetRegistryReadiness
fn clone(&self) -> HttpTargetRegistryReadiness
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HttpTargetRegistryReadiness
impl Debug for HttpTargetRegistryReadiness
Source§impl<'de> Deserialize<'de> for HttpTargetRegistryReadiness
impl<'de> Deserialize<'de> for HttpTargetRegistryReadiness
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
impl Eq for HttpTargetRegistryReadiness
Source§impl JsonSchema for HttpTargetRegistryReadiness
impl JsonSchema for HttpTargetRegistryReadiness
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 moreimpl StructuralPartialEq for HttpTargetRegistryReadiness
Auto Trait Implementations§
impl Freeze for HttpTargetRegistryReadiness
impl RefUnwindSafe for HttpTargetRegistryReadiness
impl Send for HttpTargetRegistryReadiness
impl Sync for HttpTargetRegistryReadiness
impl Unpin for HttpTargetRegistryReadiness
impl UnsafeUnpin for HttpTargetRegistryReadiness
impl UnwindSafe for HttpTargetRegistryReadiness
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