pub struct MultiIssueEntityProperties {
pub issues: Option<Vec<IssueEntityPropertiesForMultiUpdate>>,
}Expand description
MultiIssueEntityProperties : A list of issues and their respective properties to set or update. See Entity properties for more information.
Fields§
§issues: Option<Vec<IssueEntityPropertiesForMultiUpdate>>A list of issue IDs and their respective properties.
Implementations§
Source§impl MultiIssueEntityProperties
impl MultiIssueEntityProperties
Sourcepub fn new() -> MultiIssueEntityProperties
pub fn new() -> MultiIssueEntityProperties
A list of issues and their respective properties to set or update. See Entity properties for more information.
Trait Implementations§
Source§impl Clone for MultiIssueEntityProperties
impl Clone for MultiIssueEntityProperties
Source§fn clone(&self) -> MultiIssueEntityProperties
fn clone(&self) -> MultiIssueEntityProperties
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 MultiIssueEntityProperties
impl Debug for MultiIssueEntityProperties
Source§impl Default for MultiIssueEntityProperties
impl Default for MultiIssueEntityProperties
Source§fn default() -> MultiIssueEntityProperties
fn default() -> MultiIssueEntityProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MultiIssueEntityProperties
impl<'de> Deserialize<'de> for MultiIssueEntityProperties
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 MultiIssueEntityProperties
Auto Trait Implementations§
impl Freeze for MultiIssueEntityProperties
impl RefUnwindSafe for MultiIssueEntityProperties
impl Send for MultiIssueEntityProperties
impl Sync for MultiIssueEntityProperties
impl Unpin for MultiIssueEntityProperties
impl UnwindSafe for MultiIssueEntityProperties
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