pub enum ReturnQueuedChunk {
SingleQueuedChunkResponse(Box<SingleQueuedChunkResponse>),
BatchQueuedChunkResponse(Box<BatchQueuedChunkResponse>),
}
Variants§
SingleQueuedChunkResponse(Box<SingleQueuedChunkResponse>)
BatchQueuedChunkResponse(Box<BatchQueuedChunkResponse>)
Trait Implementations§
Source§impl Clone for ReturnQueuedChunk
impl Clone for ReturnQueuedChunk
Source§fn clone(&self) -> ReturnQueuedChunk
fn clone(&self) -> ReturnQueuedChunk
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 ReturnQueuedChunk
impl Debug for ReturnQueuedChunk
Source§impl Default for ReturnQueuedChunk
impl Default for ReturnQueuedChunk
Source§impl<'de> Deserialize<'de> for ReturnQueuedChunk
impl<'de> Deserialize<'de> for ReturnQueuedChunk
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 ReturnQueuedChunk
impl PartialEq for ReturnQueuedChunk
Source§impl Serialize for ReturnQueuedChunk
impl Serialize for ReturnQueuedChunk
impl StructuralPartialEq for ReturnQueuedChunk
Auto Trait Implementations§
impl Freeze for ReturnQueuedChunk
impl RefUnwindSafe for ReturnQueuedChunk
impl Send for ReturnQueuedChunk
impl Sync for ReturnQueuedChunk
impl Unpin for ReturnQueuedChunk
impl UnwindSafe for ReturnQueuedChunk
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