pub enum RemoteSyncDirection {
Push,
Pull,
}Expand description
Explicit remote sync direction for governed memory recovery state.
Variants§
Push
Copy local governed memory state into the configured Git remote.
Pull
Copy configured Git remote state back into local Mimir storage.
Trait Implementations§
Source§impl Clone for RemoteSyncDirection
impl Clone for RemoteSyncDirection
Source§fn clone(&self) -> RemoteSyncDirection
fn clone(&self) -> RemoteSyncDirection
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 RemoteSyncDirection
impl Debug for RemoteSyncDirection
Source§impl PartialEq for RemoteSyncDirection
impl PartialEq for RemoteSyncDirection
impl Copy for RemoteSyncDirection
impl Eq for RemoteSyncDirection
impl StructuralPartialEq for RemoteSyncDirection
Auto Trait Implementations§
impl Freeze for RemoteSyncDirection
impl RefUnwindSafe for RemoteSyncDirection
impl Send for RemoteSyncDirection
impl Sync for RemoteSyncDirection
impl Unpin for RemoteSyncDirection
impl UnsafeUnpin for RemoteSyncDirection
impl UnwindSafe for RemoteSyncDirection
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.