pub struct JiraForestRow {
pub id: u64,
pub item_id: Option<String>,
pub item_type: Option<String>,
}Expand description
A single row in the forest (compact format from API)
Fields§
§id: u64§item_id: Option<String>§item_type: Option<String>Trait Implementations§
Source§impl Clone for JiraForestRow
impl Clone for JiraForestRow
Source§fn clone(&self) -> JiraForestRow
fn clone(&self) -> JiraForestRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 JiraForestRow
impl Debug for JiraForestRow
Source§impl<'de> Deserialize<'de> for JiraForestRow
impl<'de> Deserialize<'de> for JiraForestRow
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 JiraForestRow
impl RefUnwindSafe for JiraForestRow
impl Send for JiraForestRow
impl Sync for JiraForestRow
impl Unpin for JiraForestRow
impl UnsafeUnpin for JiraForestRow
impl UnwindSafe for JiraForestRow
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