pub struct AgentPoolStoreConfig {
pub message_policy: AgentPoolMessagePolicy,
pub wake_policy: AgentPoolWakePolicy,
pub policy_refs: Vec<PolicyRef>,
}Expand description
Store configuration for one logical agent pool. This is durable pool metadata; constructing it does not open a concrete store or start coordination work.
Fields§
§message_policy: AgentPoolMessagePolicyMessage policy used when resolving pool messages.
wake_policy: AgentPoolWakePolicyWake policy used when scoping wake filters.
policy_refs: Vec<PolicyRef>Policy refs that scope pool-level observation and membership.
Trait Implementations§
Source§impl Clone for AgentPoolStoreConfig
impl Clone for AgentPoolStoreConfig
Source§fn clone(&self) -> AgentPoolStoreConfig
fn clone(&self) -> AgentPoolStoreConfig
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 AgentPoolStoreConfig
impl Debug for AgentPoolStoreConfig
Source§impl<'de> Deserialize<'de> for AgentPoolStoreConfig
impl<'de> Deserialize<'de> for AgentPoolStoreConfig
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 AgentPoolStoreConfig
Source§impl PartialEq for AgentPoolStoreConfig
impl PartialEq for AgentPoolStoreConfig
Source§fn eq(&self, other: &AgentPoolStoreConfig) -> bool
fn eq(&self, other: &AgentPoolStoreConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AgentPoolStoreConfig
impl Serialize for AgentPoolStoreConfig
impl StructuralPartialEq for AgentPoolStoreConfig
Auto Trait Implementations§
impl Freeze for AgentPoolStoreConfig
impl RefUnwindSafe for AgentPoolStoreConfig
impl Send for AgentPoolStoreConfig
impl Sync for AgentPoolStoreConfig
impl Unpin for AgentPoolStoreConfig
impl UnsafeUnpin for AgentPoolStoreConfig
impl UnwindSafe for AgentPoolStoreConfig
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