pub struct Branch {Show 16 fields
pub id: Option<i32>,
pub url: Option<String>,
pub display: Option<String>,
pub name: String,
pub status: Option<Box<BranchStatus>>,
pub owner: Option<Box<BriefUser>>,
pub description: Option<String>,
pub schema_id: Option<String>,
pub last_sync: Option<Option<String>>,
pub merged_time: Option<Option<String>>,
pub merged_by: Option<Box<BriefUser>>,
pub comments: Option<String>,
pub tags: Option<Vec<NestedTag>>,
pub custom_fields: Option<HashMap<String, Value>>,
pub created: Option<Option<String>>,
pub last_updated: Option<Option<String>>,
}Expand description
Branch : Adds support for custom fields and tags.
Fields§
§id: Option<i32>§url: Option<String>§display: Option<String>§name: String§status: Option<Box<BranchStatus>>§owner: Option<Box<BriefUser>>§description: Option<String>§schema_id: Option<String>§last_sync: Option<Option<String>>§merged_time: Option<Option<String>>§merged_by: Option<Box<BriefUser>>§comments: Option<String>§custom_fields: Option<HashMap<String, Value>>§created: Option<Option<String>>§last_updated: Option<Option<String>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Branch
impl<'de> Deserialize<'de> for Branch
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
impl StructuralPartialEq for Branch
Auto Trait Implementations§
impl Freeze for Branch
impl RefUnwindSafe for Branch
impl Send for Branch
impl Sync for Branch
impl Unpin for Branch
impl UnwindSafe for Branch
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