pub struct AutoCommitInfo {
pub enabled: bool,
pub attempted: bool,
pub committed: bool,
pub commit_sha: Option<String>,
pub message: Option<String>,
pub skip_reason: Option<String>,
}Fields§
§enabled: bool§attempted: bool§committed: bool§commit_sha: Option<String>§message: Option<String>§skip_reason: Option<String>Trait Implementations§
Source§impl Clone for AutoCommitInfo
impl Clone for AutoCommitInfo
Source§fn clone(&self) -> AutoCommitInfo
fn clone(&self) -> AutoCommitInfo
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 AutoCommitInfo
impl Debug for AutoCommitInfo
Source§impl<'de> Deserialize<'de> for AutoCommitInfo
impl<'de> Deserialize<'de> for AutoCommitInfo
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 AutoCommitInfo
impl RefUnwindSafe for AutoCommitInfo
impl Send for AutoCommitInfo
impl Sync for AutoCommitInfo
impl Unpin for AutoCommitInfo
impl UnsafeUnpin for AutoCommitInfo
impl UnwindSafe for AutoCommitInfo
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