pub struct RemoteResult<E> {
pub origin: Origin,
pub result: Result<Option<MergeOutcome>, E>,
}Expand description
Result of a sync operation with a single remote.
Fields§
§origin: OriginOrigin of the remote.
result: Result<Option<MergeOutcome>, E>Result of the sync operation.
Trait Implementations§
Auto Trait Implementations§
impl<E> Freeze for RemoteResult<E>where
E: Freeze,
impl<E> RefUnwindSafe for RemoteResult<E>where
E: RefUnwindSafe,
impl<E> Send for RemoteResult<E>where
E: Send,
impl<E> Sync for RemoteResult<E>where
E: Sync,
impl<E> Unpin for RemoteResult<E>where
E: Unpin,
impl<E> UnwindSafe for RemoteResult<E>where
E: UnwindSafe,
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