pub enum Message {
SendFileRequest(SendFileRequest),
SendFileResponse(SendFileResponse),
FileHistory(FileHistoryRequest),
FileHistoryResponse(FileHistoryResponse),
}
Expand description
message type
Variants
SendFileRequest(SendFileRequest)
send file request
this messages sends a file from UI to libqaul
SendFileResponse(SendFileResponse)
send file response
response message from libqaul to the UI about the result of the send file request
FileHistory(FileHistoryRequest)
file history request
request a paginated list of
FileHistoryResponse(FileHistoryResponse)
file history response
delivers the requested list of
Implementations
sourceimpl Message
impl Message
sourcepub fn merge<B>(
field: &mut Option<Message>,
tag: u32,
wire_type: WireType,
buf: &mut B,
ctx: DecodeContext
) -> Result<(), DecodeError> where
B: Buf,
pub fn merge<B>(
field: &mut Option<Message>,
tag: u32,
wire_type: WireType,
buf: &mut B,
ctx: DecodeContext
) -> Result<(), DecodeError> where
B: Buf,
Decodes an instance of the message from a buffer, and merges it into self.
sourcepub fn encoded_len(&self) -> usize
pub fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Trait Implementations
impl StructuralPartialEq for Message
Auto Trait Implementations
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnwindSafe for Message
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more