pub struct InputUpdateCase {Show 18 fields
pub title: Option<String>,
pub description: Option<String>,
pub severity: Option<i32>,
pub start_date: Option<i64>,
pub end_date: Option<i64>,
pub tags: Option<Vec<String>>,
pub flag: Option<bool>,
pub tlp: Option<i32>,
pub pap: Option<i32>,
pub status: Option<CaseStatusValue>,
pub summary: Option<String>,
pub assignee: Option<String>,
pub impact_status: Option<ImpactStatusValue>,
pub custom_fields: Option<Vec<InputCustomFieldValue>>,
pub task_rule: Option<String>,
pub observable_rule: Option<String>,
pub add_tags: Option<Vec<String>>,
pub remove_tags: Option<Vec<String>>,
}Fields§
§title: Option<String>§description: Option<String>§severity: Option<i32>§start_date: Option<i64>§end_date: Option<i64>§flag: Option<bool>§tlp: Option<i32>§pap: Option<i32>§status: Option<CaseStatusValue>§summary: Option<String>§assignee: Option<String>§impact_status: Option<ImpactStatusValue>§custom_fields: Option<Vec<InputCustomFieldValue>>§task_rule: Option<String>§observable_rule: Option<String>Implementations§
Source§impl InputUpdateCase
impl InputUpdateCase
pub fn new() -> InputUpdateCase
Trait Implementations§
Source§impl Clone for InputUpdateCase
impl Clone for InputUpdateCase
Source§fn clone(&self) -> InputUpdateCase
fn clone(&self) -> InputUpdateCase
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 InputUpdateCase
impl Debug for InputUpdateCase
Source§impl Default for InputUpdateCase
impl Default for InputUpdateCase
Source§fn default() -> InputUpdateCase
fn default() -> InputUpdateCase
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InputUpdateCase
impl<'de> Deserialize<'de> for InputUpdateCase
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
Source§impl PartialEq for InputUpdateCase
impl PartialEq for InputUpdateCase
Source§impl Serialize for InputUpdateCase
impl Serialize for InputUpdateCase
impl StructuralPartialEq for InputUpdateCase
Auto Trait Implementations§
impl Freeze for InputUpdateCase
impl RefUnwindSafe for InputUpdateCase
impl Send for InputUpdateCase
impl Sync for InputUpdateCase
impl Unpin for InputUpdateCase
impl UnwindSafe for InputUpdateCase
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