pub struct NotificationEvent {
pub id: Option<i64>,
pub name: Option<String>,
pub description: Option<String>,
pub template_event: Option<Box<NotificationEvent>>,
}
Expand description
NotificationEvent : Details about a notification event.
Fields§
§id: Option<i64>
The ID of the event. The event can be a Jira system event or a custom event.
name: Option<String>
The name of the event.
description: Option<String>
The description of the event.
template_event: Option<Box<NotificationEvent>>
The template of the event. Only custom events configured by Jira administrators have template.
Implementations§
Source§impl NotificationEvent
impl NotificationEvent
Sourcepub fn new() -> NotificationEvent
pub fn new() -> NotificationEvent
Details about a notification event.
Trait Implementations§
Source§impl Clone for NotificationEvent
impl Clone for NotificationEvent
Source§fn clone(&self) -> NotificationEvent
fn clone(&self) -> NotificationEvent
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 NotificationEvent
impl Debug for NotificationEvent
Source§impl Default for NotificationEvent
impl Default for NotificationEvent
Source§fn default() -> NotificationEvent
fn default() -> NotificationEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NotificationEvent
impl<'de> Deserialize<'de> for NotificationEvent
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 NotificationEvent
impl PartialEq for NotificationEvent
Source§impl Serialize for NotificationEvent
impl Serialize for NotificationEvent
impl StructuralPartialEq for NotificationEvent
Auto Trait Implementations§
impl Freeze for NotificationEvent
impl RefUnwindSafe for NotificationEvent
impl Send for NotificationEvent
impl Sync for NotificationEvent
impl Unpin for NotificationEvent
impl UnwindSafe for NotificationEvent
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