pub enum PublicEndpointRequirement {
Replica {
replica_id: String,
},
BuiltinProxy {
process_id: String,
role_id: String,
prefill_role: String,
decode_role: String,
readiness: ReadinessProbe,
},
}Expand description
How the topology’s public workload endpoint is exposed.
Variants§
Replica
The endpoint is served directly by a single replica.
BuiltinProxy
The endpoint is fronted by an Inferlab-owned built-in proxy routing across the named prefill and decode roles.
Trait Implementations§
Source§impl Clone for PublicEndpointRequirement
impl Clone for PublicEndpointRequirement
Source§fn clone(&self) -> PublicEndpointRequirement
fn clone(&self) -> PublicEndpointRequirement
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 PublicEndpointRequirement
impl Debug for PublicEndpointRequirement
Source§impl<'de> Deserialize<'de> for PublicEndpointRequirement
impl<'de> Deserialize<'de> for PublicEndpointRequirement
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 PublicEndpointRequirement
Source§impl JsonSchema for PublicEndpointRequirement
impl JsonSchema for PublicEndpointRequirement
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 moreSource§impl PartialEq for PublicEndpointRequirement
impl PartialEq for PublicEndpointRequirement
Source§fn eq(&self, other: &PublicEndpointRequirement) -> bool
fn eq(&self, other: &PublicEndpointRequirement) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PublicEndpointRequirement
Auto Trait Implementations§
impl Freeze for PublicEndpointRequirement
impl RefUnwindSafe for PublicEndpointRequirement
impl Send for PublicEndpointRequirement
impl Sync for PublicEndpointRequirement
impl Unpin for PublicEndpointRequirement
impl UnsafeUnpin for PublicEndpointRequirement
impl UnwindSafe for PublicEndpointRequirement
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