pub enum FileClientAction {
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 FileClientAction
impl Clone for FileClientAction
Source§fn clone(&self) -> FileClientAction
fn clone(&self) -> FileClientAction
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 FileClientAction
impl DeBin for FileClientAction
Source§impl Debug for FileClientAction
impl Debug for FileClientAction
Auto Trait Implementations§
impl Freeze for FileClientAction
impl RefUnwindSafe for FileClientAction
impl Send for FileClientAction
impl Sync for FileClientAction
impl Unpin for FileClientAction
impl UnwindSafe for FileClientAction
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