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 (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 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
impl Eq for UpdateOutputPayload
Source§impl PartialEq for UpdateOutputPayload
impl PartialEq for UpdateOutputPayload
Source§fn eq(&self, other: &UpdateOutputPayload) -> bool
fn eq(&self, other: &UpdateOutputPayload) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UpdateOutputPayload
impl Serialize for UpdateOutputPayload
impl StructuralPartialEq 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.
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.