pub struct HandoffState {
pub updated: Option<String>,
pub branch: Option<String>,
pub build: Option<String>,
pub tests: Option<String>,
pub notes: Option<String>,
pub touched_files: Vec<String>,
pub extra: BTreeMap<String, Value>,
}Fields§
§updated: Option<String>§branch: Option<String>§build: Option<String>§tests: Option<String>§notes: Option<String>§touched_files: Vec<String>§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for HandoffState
impl Clone for HandoffState
Source§fn clone(&self) -> HandoffState
fn clone(&self) -> HandoffState
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 HandoffState
impl Debug for HandoffState
Source§impl Default for HandoffState
impl Default for HandoffState
Source§fn default() -> HandoffState
fn default() -> HandoffState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HandoffState
impl<'de> Deserialize<'de> for HandoffState
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
Auto Trait Implementations§
impl Freeze for HandoffState
impl RefUnwindSafe for HandoffState
impl Send for HandoffState
impl Sync for HandoffState
impl Unpin for HandoffState
impl UnsafeUnpin for HandoffState
impl UnwindSafe for HandoffState
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