pub struct AgentStreamQueueRegistry {
pub queues: Vec<String>,
}Expand description
Runtime-only stream queue registry placeholder.
Fields§
§queues: Vec<String>Queue names/ids known to the context. Actual async queues live outside serializable state.
Implementations§
Trait Implementations§
Source§impl Clone for AgentStreamQueueRegistry
impl Clone for AgentStreamQueueRegistry
Source§fn clone(&self) -> AgentStreamQueueRegistry
fn clone(&self) -> AgentStreamQueueRegistry
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 AgentStreamQueueRegistry
impl Debug for AgentStreamQueueRegistry
Source§impl Default for AgentStreamQueueRegistry
impl Default for AgentStreamQueueRegistry
Source§fn default() -> AgentStreamQueueRegistry
fn default() -> AgentStreamQueueRegistry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentStreamQueueRegistry
impl<'de> Deserialize<'de> for AgentStreamQueueRegistry
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 AgentStreamQueueRegistry
Source§impl PartialEq for AgentStreamQueueRegistry
impl PartialEq for AgentStreamQueueRegistry
Source§impl Serialize for AgentStreamQueueRegistry
impl Serialize for AgentStreamQueueRegistry
impl StructuralPartialEq for AgentStreamQueueRegistry
Auto Trait Implementations§
impl Freeze for AgentStreamQueueRegistry
impl RefUnwindSafe for AgentStreamQueueRegistry
impl Send for AgentStreamQueueRegistry
impl Sync for AgentStreamQueueRegistry
impl Unpin for AgentStreamQueueRegistry
impl UnsafeUnpin for AgentStreamQueueRegistry
impl UnwindSafe for AgentStreamQueueRegistry
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