pub struct GetBranchOutput {
pub branch: Option<BranchInfo>,
}Expand description
Represents the output of a get branch operation.
Fields§
§branch: Option<BranchInfo>The name of the branch.
Trait Implementations§
Source§impl Clone for GetBranchOutput
impl Clone for GetBranchOutput
Source§fn clone(&self) -> GetBranchOutput
fn clone(&self) -> GetBranchOutput
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 GetBranchOutput
impl Debug for GetBranchOutput
Source§impl Default for GetBranchOutput
impl Default for GetBranchOutput
Source§fn default() -> GetBranchOutput
fn default() -> GetBranchOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetBranchOutput
impl<'de> Deserialize<'de> for GetBranchOutput
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 GetBranchOutput
impl PartialEq for GetBranchOutput
impl StructuralPartialEq for GetBranchOutput
Auto Trait Implementations§
impl Freeze for GetBranchOutput
impl RefUnwindSafe for GetBranchOutput
impl Send for GetBranchOutput
impl Sync for GetBranchOutput
impl Unpin for GetBranchOutput
impl UnwindSafe for GetBranchOutput
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