pub struct StreamStartResponse {
pub stream_id: String,
}Expand description
Response from starting a streaming handler
Fields§
§stream_id: StringUnique stream ID for this invocation
Trait Implementations§
Source§impl Clone for StreamStartResponse
impl Clone for StreamStartResponse
Source§fn clone(&self) -> StreamStartResponse
fn clone(&self) -> StreamStartResponse
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 StreamStartResponse
impl Debug for StreamStartResponse
Source§impl<'de> Deserialize<'de> for StreamStartResponse
impl<'de> Deserialize<'de> for StreamStartResponse
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 StreamStartResponse
impl RefUnwindSafe for StreamStartResponse
impl Send for StreamStartResponse
impl Sync for StreamStartResponse
impl Unpin for StreamStartResponse
impl UnsafeUnpin for StreamStartResponse
impl UnwindSafe for StreamStartResponse
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