pub struct JiraForestResponse {
pub version: u64,
pub rows: Vec<JiraForestRow>,
pub depths: Vec<u32>,
pub total_count: Option<u64>,
}Expand description
Forest response from POST /rest/structure/2.0/forest/{id}/spec
Fields§
§version: u64§rows: Vec<JiraForestRow>§depths: Vec<u32>§total_count: Option<u64>Trait Implementations§
Source§impl Clone for JiraForestResponse
impl Clone for JiraForestResponse
Source§fn clone(&self) -> JiraForestResponse
fn clone(&self) -> JiraForestResponse
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 JiraForestResponse
impl Debug for JiraForestResponse
Source§impl<'de> Deserialize<'de> for JiraForestResponse
impl<'de> Deserialize<'de> for JiraForestResponse
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 JiraForestResponse
impl RefUnwindSafe for JiraForestResponse
impl Send for JiraForestResponse
impl Sync for JiraForestResponse
impl Unpin for JiraForestResponse
impl UnsafeUnpin for JiraForestResponse
impl UnwindSafe for JiraForestResponse
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