pub enum GetVersionResult {
NotFound,
Gone,
Success {
version_id: Uuid,
parent_version_id: Uuid,
history_segment: HistorySegment,
},
}
Expand description
Response to get_child_version. See the protocol documentation.
Variants§
Trait Implementations§
Source§impl Clone for GetVersionResult
impl Clone for GetVersionResult
Source§fn clone(&self) -> GetVersionResult
fn clone(&self) -> GetVersionResult
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 GetVersionResult
impl Debug for GetVersionResult
Source§impl PartialEq for GetVersionResult
impl PartialEq for GetVersionResult
impl StructuralPartialEq for GetVersionResult
Auto Trait Implementations§
impl Freeze for GetVersionResult
impl RefUnwindSafe for GetVersionResult
impl Send for GetVersionResult
impl Sync for GetVersionResult
impl Unpin for GetVersionResult
impl UnwindSafe for GetVersionResult
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