pub enum FileClientMessage {
Response(FileResponse),
Notification(FileNotification),
}
Expand description
A type for representing either a response or a notification from the collab server.
Variants§
Response(FileResponse)
Notification(FileNotification)
Trait Implementations§
Source§impl Clone for FileClientMessage
impl Clone for FileClientMessage
Source§fn clone(&self) -> FileClientMessage
fn clone(&self) -> FileClientMessage
Returns a copy 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 DeBin for FileClientMessage
impl DeBin for FileClientMessage
Source§impl Debug for FileClientMessage
impl Debug for FileClientMessage
Auto Trait Implementations§
impl Freeze for FileClientMessage
impl RefUnwindSafe for FileClientMessage
impl Send for FileClientMessage
impl Sync for FileClientMessage
impl Unpin for FileClientMessage
impl UnwindSafe for FileClientMessage
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