pub struct CreateBranchInput {
pub branch_name: String,
pub commit_id: String,
pub repository_name: String,
}Expand description
Represents the input of a create branch operation.
Fields§
§branch_name: StringThe name of the new branch to create.
commit_id: StringThe ID of the commit to point the new branch to.
repository_name: StringThe name of the repository in which you want to create the new branch.
Trait Implementations§
Source§impl Clone for CreateBranchInput
impl Clone for CreateBranchInput
Source§fn clone(&self) -> CreateBranchInput
fn clone(&self) -> CreateBranchInput
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 CreateBranchInput
impl Debug for CreateBranchInput
Source§impl Default for CreateBranchInput
impl Default for CreateBranchInput
Source§fn default() -> CreateBranchInput
fn default() -> CreateBranchInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateBranchInput
impl PartialEq for CreateBranchInput
Source§impl Serialize for CreateBranchInput
impl Serialize for CreateBranchInput
impl StructuralPartialEq for CreateBranchInput
Auto Trait Implementations§
impl Freeze for CreateBranchInput
impl RefUnwindSafe for CreateBranchInput
impl Send for CreateBranchInput
impl Sync for CreateBranchInput
impl Unpin for CreateBranchInput
impl UnwindSafe for CreateBranchInput
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