pub struct UiUpdate {
pub target_id: String,
pub operation: UiOperation,
pub payload: Option<Component>,
}Available on crate feature
ui only.Expand description
Incremental UI update for streaming
Allows agents to update specific components by ID without re-rendering the entire UI.
Fields§
§target_id: StringTarget component ID to update
operation: UiOperationOperation to perform
payload: Option<Component>Payload data (component for replace/patch/append, None for remove)
Implementations§
Source§impl UiUpdate
impl UiUpdate
Sourcepub fn replace(target_id: impl Into<String>, component: Component) -> UiUpdate
pub fn replace(target_id: impl Into<String>, component: Component) -> UiUpdate
Create a replace update
Sourcepub fn append(target_id: impl Into<String>, component: Component) -> UiUpdate
pub fn append(target_id: impl Into<String>, component: Component) -> UiUpdate
Create an append update (for containers)
Sourcepub fn to_content(self) -> Content
pub fn to_content(self) -> Content
Convert to Content for sending via Events
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UiUpdate
impl<'de> Deserialize<'de> for UiUpdate
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UiUpdate, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UiUpdate, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for UiUpdate
impl JsonSchema for UiUpdate
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
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 is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl Serialize for UiUpdate
impl Serialize for UiUpdate
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
Auto Trait Implementations§
impl Freeze for UiUpdate
impl RefUnwindSafe for UiUpdate
impl Send for UiUpdate
impl Sync for UiUpdate
impl Unpin for UiUpdate
impl UnwindSafe for UiUpdate
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request