pub struct GitWorktreeConfig {
pub repository_url: String,
pub main_branch: String,
pub created_at: DateTime<Utc>,
pub source_control: String,
pub bitbucket_email: Option<String>,
pub hooks: Option<Hooks>,
}Fields§
§repository_url: String§main_branch: String§created_at: DateTime<Utc>§source_control: String§bitbucket_email: Option<String>§hooks: Option<Hooks>Implementations§
Trait Implementations§
Source§impl Debug for GitWorktreeConfig
impl Debug for GitWorktreeConfig
Source§impl<'de> Deserialize<'de> for GitWorktreeConfig
impl<'de> Deserialize<'de> for GitWorktreeConfig
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 GitWorktreeConfig
impl RefUnwindSafe for GitWorktreeConfig
impl Send for GitWorktreeConfig
impl Sync for GitWorktreeConfig
impl Unpin for GitWorktreeConfig
impl UnwindSafe for GitWorktreeConfig
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