pub struct UpdateOutputPayload {
pub update_history_id: Uuid,
pub output: String,
pub stream: OutputStreamType,
}Expand description
Agent -> Controller: Streaming output line.
Fields§
§update_history_id: Uuid§output: String§stream: OutputStreamTypeTrait Implementations§
Source§impl Clone for UpdateOutputPayload
impl Clone for UpdateOutputPayload
Source§fn clone(&self) -> UpdateOutputPayload
fn clone(&self) -> UpdateOutputPayload
Returns a duplicate of the value. Read more
1.0.0 · 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 UpdateOutputPayload
impl Debug for UpdateOutputPayload
Source§impl<'de> Deserialize<'de> for UpdateOutputPayload
impl<'de> Deserialize<'de> for UpdateOutputPayload
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 PartialEq for UpdateOutputPayload
impl PartialEq for UpdateOutputPayload
Source§impl Serialize for UpdateOutputPayload
impl Serialize for UpdateOutputPayload
Source§impl WireValidate for UpdateOutputPayload
impl WireValidate for UpdateOutputPayload
Source§fn wire_validate(&self) -> Result<(), WireValidationError>
fn wire_validate(&self) -> Result<(), WireValidationError>
Validate that all fields are within wire protocol size limits.
impl Eq for UpdateOutputPayload
impl StructuralPartialEq for UpdateOutputPayload
Auto Trait Implementations§
impl Freeze for UpdateOutputPayload
impl RefUnwindSafe for UpdateOutputPayload
impl Send for UpdateOutputPayload
impl Sync for UpdateOutputPayload
impl Unpin for UpdateOutputPayload
impl UnsafeUnpin for UpdateOutputPayload
impl UnwindSafe for UpdateOutputPayload
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