pub struct NewCase {
pub title: String,
pub description: Option<String>,
pub tags: Vec<String>,
pub severity: Option<String>,
pub assignee_uids: Vec<String>,
}Fields§
§title: String§description: Option<String>§severity: Option<String>§assignee_uids: Vec<String>Resolved profile uids (the caller resolves usernames first).
Trait Implementations§
impl StructuralPartialEq for NewCase
Auto Trait Implementations§
impl Freeze for NewCase
impl RefUnwindSafe for NewCase
impl Send for NewCase
impl Sync for NewCase
impl Unpin for NewCase
impl UnsafeUnpin for NewCase
impl UnwindSafe for NewCase
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