pub enum ChunkedReply {
ReadChunk(ReadChunk),
StartChunkedWrite(StartChunkedWrite),
StartEncryptedChunkedWrite(StartEncryptedChunkedWrite),
StartChunkedRead(StartChunkedRead),
StartEncryptedChunkedRead(StartEncryptedChunkedRead),
WriteChunk(WriteChunk),
AbortChunkedWrite(AbortChunkedWrite),
PartialReadFile(PartialReadFile),
AppendFile(AppendFile),
}Variants§
ReadChunk(ReadChunk)
StartChunkedWrite(StartChunkedWrite)
StartEncryptedChunkedWrite(StartEncryptedChunkedWrite)
StartChunkedRead(StartChunkedRead)
StartEncryptedChunkedRead(StartEncryptedChunkedRead)
WriteChunk(WriteChunk)
AbortChunkedWrite(AbortChunkedWrite)
PartialReadFile(PartialReadFile)
AppendFile(AppendFile)
Trait Implementations§
Source§impl Debug for ChunkedReply
impl Debug for ChunkedReply
Source§impl<'de> Deserialize<'de> for ChunkedReply
impl<'de> Deserialize<'de> for ChunkedReply
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 From<AbortChunkedWrite> for ChunkedReply
impl From<AbortChunkedWrite> for ChunkedReply
Source§fn from(reply: AbortChunkedWrite) -> Self
fn from(reply: AbortChunkedWrite) -> Self
Converts to this type from the input type.
Source§impl From<AppendFile> for ChunkedReply
impl From<AppendFile> for ChunkedReply
Source§fn from(reply: AppendFile) -> Self
fn from(reply: AppendFile) -> Self
Converts to this type from the input type.
Source§impl From<PartialReadFile> for ChunkedReply
impl From<PartialReadFile> for ChunkedReply
Source§fn from(reply: PartialReadFile) -> Self
fn from(reply: PartialReadFile) -> Self
Converts to this type from the input type.
Source§impl From<ReadChunk> for ChunkedReply
impl From<ReadChunk> for ChunkedReply
Source§impl From<StartChunkedRead> for ChunkedReply
impl From<StartChunkedRead> for ChunkedReply
Source§fn from(reply: StartChunkedRead) -> Self
fn from(reply: StartChunkedRead) -> Self
Converts to this type from the input type.
Source§impl From<StartChunkedWrite> for ChunkedReply
impl From<StartChunkedWrite> for ChunkedReply
Source§fn from(reply: StartChunkedWrite) -> Self
fn from(reply: StartChunkedWrite) -> Self
Converts to this type from the input type.
Source§impl From<StartEncryptedChunkedRead> for ChunkedReply
impl From<StartEncryptedChunkedRead> for ChunkedReply
Source§fn from(reply: StartEncryptedChunkedRead) -> Self
fn from(reply: StartEncryptedChunkedRead) -> Self
Converts to this type from the input type.
Source§impl From<StartEncryptedChunkedWrite> for ChunkedReply
impl From<StartEncryptedChunkedWrite> for ChunkedReply
Source§fn from(reply: StartEncryptedChunkedWrite) -> Self
fn from(reply: StartEncryptedChunkedWrite) -> Self
Converts to this type from the input type.
Source§impl From<WriteChunk> for ChunkedReply
impl From<WriteChunk> for ChunkedReply
Source§fn from(reply: WriteChunk) -> Self
fn from(reply: WriteChunk) -> Self
Converts to this type from the input type.
Source§impl Serialize for ChunkedReply
impl Serialize for ChunkedReply
Source§impl TryFrom<ChunkedReply> for AbortChunkedWrite
impl TryFrom<ChunkedReply> for AbortChunkedWrite
Source§impl TryFrom<ChunkedReply> for AppendFile
impl TryFrom<ChunkedReply> for AppendFile
Source§impl TryFrom<ChunkedReply> for PartialReadFile
impl TryFrom<ChunkedReply> for PartialReadFile
Source§impl TryFrom<ChunkedReply> for ReadChunk
impl TryFrom<ChunkedReply> for ReadChunk
Source§impl TryFrom<ChunkedReply> for StartChunkedRead
impl TryFrom<ChunkedReply> for StartChunkedRead
Source§impl TryFrom<ChunkedReply> for StartChunkedWrite
impl TryFrom<ChunkedReply> for StartChunkedWrite
Source§impl TryFrom<ChunkedReply> for WriteChunk
impl TryFrom<ChunkedReply> for WriteChunk
Auto Trait Implementations§
impl Freeze for ChunkedReply
impl RefUnwindSafe for ChunkedReply
impl Send for ChunkedReply
impl Sync for ChunkedReply
impl Unpin for ChunkedReply
impl UnwindSafe for ChunkedReply
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