pub struct LocksFile {
pub version: u32,
pub locks: HashMap<String, Lock>,
pub settings: LockSettings,
}Expand description
The top-level locks.json structure on the coordination branch.
Fields§
§version: u32§locks: HashMap<String, Lock>Map from issue ID (as string) to Lock.
settings: LockSettingsImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LocksFile
impl<'de> Deserialize<'de> for LocksFile
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
impl StructuralPartialEq for LocksFile
Auto Trait Implementations§
impl Freeze for LocksFile
impl RefUnwindSafe for LocksFile
impl Send for LocksFile
impl Sync for LocksFile
impl Unpin for LocksFile
impl UnsafeUnpin for LocksFile
impl UnwindSafe for LocksFile
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