pub struct DeleteBranchInput {
pub branch_name: String,
pub repository_name: String,
}
Expand description
Represents the input of a delete branch operation.
Fields§
§branch_name: String
The name of the branch to delete.
repository_name: String
The name of the repository that contains the branch to be deleted.
Trait Implementations§
Source§impl Clone for DeleteBranchInput
impl Clone for DeleteBranchInput
Source§fn clone(&self) -> DeleteBranchInput
fn clone(&self) -> DeleteBranchInput
Returns a copy 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 DeleteBranchInput
impl Debug for DeleteBranchInput
Source§impl Default for DeleteBranchInput
impl Default for DeleteBranchInput
Source§fn default() -> DeleteBranchInput
fn default() -> DeleteBranchInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteBranchInput
impl PartialEq for DeleteBranchInput
Source§impl Serialize for DeleteBranchInput
impl Serialize for DeleteBranchInput
impl StructuralPartialEq for DeleteBranchInput
Auto Trait Implementations§
impl Freeze for DeleteBranchInput
impl RefUnwindSafe for DeleteBranchInput
impl Send for DeleteBranchInput
impl Sync for DeleteBranchInput
impl Unpin for DeleteBranchInput
impl UnwindSafe for DeleteBranchInput
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