pub struct SaveFileResponse {
pub path: String,
pub old_data: String,
pub new_data: String,
pub kind: SaveKind,
pub id: u64,
}
Expand description
A type for representing a response from the collab server.
Fields§
§path: String
§old_data: String
§new_data: String
§kind: SaveKind
§id: u64
Trait Implementations§
Source§impl Clone for SaveFileResponse
impl Clone for SaveFileResponse
Source§fn clone(&self) -> SaveFileResponse
fn clone(&self) -> SaveFileResponse
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 SaveFileResponse
impl DeBin for SaveFileResponse
Source§impl Debug for SaveFileResponse
impl Debug for SaveFileResponse
Auto Trait Implementations§
impl Freeze for SaveFileResponse
impl RefUnwindSafe for SaveFileResponse
impl Send for SaveFileResponse
impl Sync for SaveFileResponse
impl Unpin for SaveFileResponse
impl UnwindSafe for SaveFileResponse
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