pub struct UiUpdate {
pub target_id: String,
pub operation: UiOperation,
pub payload: Option<Component>,
}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) -> Self
pub fn replace(target_id: impl Into<String>, component: Component) -> Self
Create a replace update
Sourcepub fn append(target_id: impl Into<String>, component: Component) -> Self
pub fn append(target_id: impl Into<String>, component: Component) -> Self
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<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
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 moreAuto 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)