pub struct StreamUpdateInput {
pub stream_name: String,
pub group_id: String,
pub item_id: String,
pub ops: Vec<UpdateOp>,
}Expand description
Input for the stream update function
Fields§
§stream_name: String§group_id: String§item_id: String§ops: Vec<UpdateOp>Trait Implementations§
Source§impl Clone for StreamUpdateInput
impl Clone for StreamUpdateInput
Source§fn clone(&self) -> StreamUpdateInput
fn clone(&self) -> StreamUpdateInput
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 StreamUpdateInput
impl Debug for StreamUpdateInput
Source§impl<'de> Deserialize<'de> for StreamUpdateInput
impl<'de> Deserialize<'de> for StreamUpdateInput
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
Auto Trait Implementations§
impl Freeze for StreamUpdateInput
impl RefUnwindSafe for StreamUpdateInput
impl Send for StreamUpdateInput
impl Sync for StreamUpdateInput
impl Unpin for StreamUpdateInput
impl UnsafeUnpin for StreamUpdateInput
impl UnwindSafe for StreamUpdateInput
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