pub struct JiraStructureValueEntry {
pub row_id: u64,
pub column_id: Option<String>,
pub value: Value,
}Expand description
Batch value response from POST /rest/structure/2.0/value
Fields§
§row_id: u64§column_id: Option<String>§value: ValueTrait Implementations§
Source§impl Clone for JiraStructureValueEntry
impl Clone for JiraStructureValueEntry
Source§fn clone(&self) -> JiraStructureValueEntry
fn clone(&self) -> JiraStructureValueEntry
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 JiraStructureValueEntry
impl Debug for JiraStructureValueEntry
Source§impl<'de> Deserialize<'de> for JiraStructureValueEntry
impl<'de> Deserialize<'de> for JiraStructureValueEntry
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 JiraStructureValueEntry
impl RefUnwindSafe for JiraStructureValueEntry
impl Send for JiraStructureValueEntry
impl Sync for JiraStructureValueEntry
impl Unpin for JiraStructureValueEntry
impl UnsafeUnpin for JiraStructureValueEntry
impl UnwindSafe for JiraStructureValueEntry
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