pub struct VdirItemStoreOutput {
pub id: String,
pub path: VdirPath,
}Expand description
Successful output of VdirItemStore.
Fields§
§id: StringId of the stored item, reused from the caller or freshly minted as a UUIDv4.
path: VdirPathFinal on-disk path of the stored item file.
Trait Implementations§
Source§impl Clone for VdirItemStoreOutput
impl Clone for VdirItemStoreOutput
Source§fn clone(&self) -> VdirItemStoreOutput
fn clone(&self) -> VdirItemStoreOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for VdirItemStoreOutput
impl RefUnwindSafe for VdirItemStoreOutput
impl Send for VdirItemStoreOutput
impl Sync for VdirItemStoreOutput
impl Unpin for VdirItemStoreOutput
impl UnsafeUnpin for VdirItemStoreOutput
impl UnwindSafe for VdirItemStoreOutput
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