pub struct WebOverviewBranches {
pub has_more_active_branch: Option<bool>,
pub default_branch: Option<Value>,
pub stale_branches: Option<Vec<Value>>,
pub active_branches: Option<Vec<Value>>,
pub has_more_yours_branch: Option<bool>,
pub has_more_stale_branch: Option<bool>,
pub initialized: Option<bool>,
pub yours_branches: Option<Vec<Value>>,
}
Expand description
WebOverviewBranches 模型
Fields§
§has_more_active_branch: Option<bool>
§default_branch: Option<Value>
§stale_branches: Option<Vec<Value>>
§active_branches: Option<Vec<Value>>
§has_more_yours_branch: Option<bool>
§has_more_stale_branch: Option<bool>
§initialized: Option<bool>
§yours_branches: Option<Vec<Value>>
Trait Implementations§
Source§impl Clone for WebOverviewBranches
impl Clone for WebOverviewBranches
Source§fn clone(&self) -> WebOverviewBranches
fn clone(&self) -> WebOverviewBranches
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 WebOverviewBranches
impl Debug for WebOverviewBranches
Source§impl<'de> Deserialize<'de> for WebOverviewBranches
impl<'de> Deserialize<'de> for WebOverviewBranches
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
Auto Trait Implementations§
impl Freeze for WebOverviewBranches
impl RefUnwindSafe for WebOverviewBranches
impl Send for WebOverviewBranches
impl Sync for WebOverviewBranches
impl Unpin for WebOverviewBranches
impl UnwindSafe for WebOverviewBranches
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