pub struct PoolMemberSpec {
pub model_id: String,
pub weight: Option<u32>,
pub role: PoolMemberRole,
}Expand description
One member of a ModelPoolSpec, referencing a ModelSpec by id.
Fields§
§model_id: StringReferences a ModelSpec.id in the same registry.
weight: Option<u32>Relative selection weight for home distribution. None is treated
as 1. Must be greater than zero when present.
role: PoolMemberRoleWhether the member is a home candidate or a failover-only target.
Trait Implementations§
Source§impl Clone for PoolMemberSpec
impl Clone for PoolMemberSpec
Source§fn clone(&self) -> PoolMemberSpec
fn clone(&self) -> PoolMemberSpec
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 PoolMemberSpec
impl Debug for PoolMemberSpec
Source§impl<'de> Deserialize<'de> for PoolMemberSpec
impl<'de> Deserialize<'de> for PoolMemberSpec
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PoolMemberSpec, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PoolMemberSpec, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for PoolMemberSpec
impl JsonSchema for PoolMemberSpec
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 PoolMemberSpec
impl PartialEq for PoolMemberSpec
Source§fn eq(&self, other: &PoolMemberSpec) -> bool
fn eq(&self, other: &PoolMemberSpec) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PoolMemberSpec
impl Serialize for PoolMemberSpec
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PoolMemberSpec
Auto Trait Implementations§
impl Freeze for PoolMemberSpec
impl RefUnwindSafe for PoolMemberSpec
impl Send for PoolMemberSpec
impl Sync for PoolMemberSpec
impl Unpin for PoolMemberSpec
impl UnsafeUnpin for PoolMemberSpec
impl UnwindSafe for PoolMemberSpec
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