pub struct FilestoreResponse {
pub action: FilestoreAction,
pub first_file_name: FileId,
pub second_file_name: FileId,
}Expand description
A parsed filestore response containing the action and file names.
Fields§
§action: FilestoreActionThe filestore action that was requested.
first_file_name: FileIdThe primary file name from the original request.
second_file_name: FileIdThe secondary file name, used by rename/append/replace actions.
Trait Implementations§
Source§impl Clone for FilestoreResponse
impl Clone for FilestoreResponse
Source§fn clone(&self) -> FilestoreResponse
fn clone(&self) -> FilestoreResponse
Returns a duplicate 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 Debug for FilestoreResponse
impl Debug for FilestoreResponse
Source§impl PartialEq for FilestoreResponse
impl PartialEq for FilestoreResponse
impl Eq for FilestoreResponse
impl StructuralPartialEq for FilestoreResponse
Auto Trait Implementations§
impl Freeze for FilestoreResponse
impl RefUnwindSafe for FilestoreResponse
impl Send for FilestoreResponse
impl Sync for FilestoreResponse
impl Unpin for FilestoreResponse
impl UnsafeUnpin for FilestoreResponse
impl UnwindSafe for FilestoreResponse
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