Struct azure_devops_rust_api::git::models::TfvcBranch
source · pub struct TfvcBranch {
pub tfvc_branch_ref: TfvcBranchRef,
pub children: Vec<TfvcBranch>,
pub mappings: Vec<TfvcBranchMapping>,
pub parent: Option<TfvcShallowBranchRef>,
pub related_branches: Vec<TfvcShallowBranchRef>,
}
Expand description
Class representing a branch object.
Fields§
§tfvc_branch_ref: TfvcBranchRef
§children: Vec<TfvcBranch>
List of children for the branch.
mappings: Vec<TfvcBranchMapping>
List of branch mappings.
parent: Option<TfvcShallowBranchRef>
This is the shallow branchref class.
List of paths of the related branches.
Implementations§
source§impl TfvcBranch
impl TfvcBranch
Trait Implementations§
source§impl Clone for TfvcBranch
impl Clone for TfvcBranch
source§fn clone(&self) -> TfvcBranch
fn clone(&self) -> TfvcBranch
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 TfvcBranch
impl Debug for TfvcBranch
source§impl Default for TfvcBranch
impl Default for TfvcBranch
source§fn default() -> TfvcBranch
fn default() -> TfvcBranch
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TfvcBranch
impl<'de> Deserialize<'de> for TfvcBranch
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 TfvcBranch
impl PartialEq for TfvcBranch
source§fn eq(&self, other: &TfvcBranch) -> bool
fn eq(&self, other: &TfvcBranch) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TfvcBranch
impl Serialize for TfvcBranch
impl StructuralPartialEq for TfvcBranch
Auto Trait Implementations§
impl Freeze for TfvcBranch
impl RefUnwindSafe for TfvcBranch
impl Send for TfvcBranch
impl Sync for TfvcBranch
impl Unpin for TfvcBranch
impl UnwindSafe for TfvcBranch
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