pub enum StreamContent {
GetResponse {
key: ContractKey,
includes_contract: bool,
},
Raw,
}Expand description
Describes what kind of response is being streamed.
Variants§
GetResponse
A streamed GetResponse — the large state is delivered via StreamChunks.
Raw
Raw binary stream (future use).
Trait Implementations§
Source§impl Clone for StreamContent
impl Clone for StreamContent
Source§fn clone(&self) -> StreamContent
fn clone(&self) -> StreamContent
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 StreamContent
impl Debug for StreamContent
Source§impl<'de> Deserialize<'de> for StreamContent
impl<'de> Deserialize<'de> for StreamContent
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 StreamContent
impl RefUnwindSafe for StreamContent
impl Send for StreamContent
impl Sync for StreamContent
impl Unpin for StreamContent
impl UnsafeUnpin for StreamContent
impl UnwindSafe for StreamContent
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