pub struct DeleteBranchOutput {
pub deleted_branch: Option<BranchInfo>,
}Expand description
Represents the output of a delete branch operation.
Fields§
§deleted_branch: Option<BranchInfo>Information about the branch deleted by the operation, including the branch name and the commit ID that was the tip of the branch.
Trait Implementations§
Source§impl Clone for DeleteBranchOutput
impl Clone for DeleteBranchOutput
Source§fn clone(&self) -> DeleteBranchOutput
fn clone(&self) -> DeleteBranchOutput
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 DeleteBranchOutput
impl Debug for DeleteBranchOutput
Source§impl Default for DeleteBranchOutput
impl Default for DeleteBranchOutput
Source§fn default() -> DeleteBranchOutput
fn default() -> DeleteBranchOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteBranchOutput
impl<'de> Deserialize<'de> for DeleteBranchOutput
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
Source§impl PartialEq for DeleteBranchOutput
impl PartialEq for DeleteBranchOutput
impl StructuralPartialEq for DeleteBranchOutput
Auto Trait Implementations§
impl Freeze for DeleteBranchOutput
impl RefUnwindSafe for DeleteBranchOutput
impl Send for DeleteBranchOutput
impl Sync for DeleteBranchOutput
impl Unpin for DeleteBranchOutput
impl UnwindSafe for DeleteBranchOutput
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