pub struct BranchMetadata {
pub name: String,
pub purpose: String,
pub created_from: String,
pub created_at: String,
pub status: String,
pub merged_into: Option<String>,
pub merged_at: Option<String>,
}Expand description
Branch metadata stored in metadata.yaml (paper §3.1).
Records the intent and motivation of each branch.
Fields§
§name: String§purpose: String§created_from: String§created_at: String§status: String§merged_into: Option<String>§merged_at: Option<String>Trait Implementations§
Source§impl Clone for BranchMetadata
impl Clone for BranchMetadata
Source§fn clone(&self) -> BranchMetadata
fn clone(&self) -> BranchMetadata
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 BranchMetadata
impl Debug for BranchMetadata
Source§impl<'de> Deserialize<'de> for BranchMetadata
impl<'de> Deserialize<'de> for BranchMetadata
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 BranchMetadata
impl RefUnwindSafe for BranchMetadata
impl Send for BranchMetadata
impl Sync for BranchMetadata
impl Unpin for BranchMetadata
impl UnsafeUnpin for BranchMetadata
impl UnwindSafe for BranchMetadata
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