pub struct Synchronization {
pub mutexes: Vec<Mutex>,
}Expand description
Argo Synchronization: workflow- or template-scoped mutex /
semaphore registry. We surface mutexes only (semaphores TBD);
database (Argo’s per-cluster mutex DB toggle) is deferred.
Fields§
§mutexes: Vec<Mutex>Trait Implementations§
Source§impl Clone for Synchronization
impl Clone for Synchronization
Source§fn clone(&self) -> Synchronization
fn clone(&self) -> Synchronization
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 moreSource§impl Debug for Synchronization
impl Debug for Synchronization
Source§impl Default for Synchronization
impl Default for Synchronization
Source§fn default() -> Synchronization
fn default() -> Synchronization
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Synchronization
impl<'de> Deserialize<'de> for Synchronization
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for Synchronization
impl PartialEq for Synchronization
Source§impl Serialize for Synchronization
impl Serialize for Synchronization
impl StructuralPartialEq for Synchronization
Auto Trait Implementations§
impl Freeze for Synchronization
impl RefUnwindSafe for Synchronization
impl Send for Synchronization
impl Sync for Synchronization
impl Unpin for Synchronization
impl UnsafeUnpin for Synchronization
impl UnwindSafe for Synchronization
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