pub struct OpenIssue {
pub id: String,
pub title: Option<String>,
pub message: Option<String>,
pub severity: Severity,
pub remind_every_seconds: Option<u64>,
pub notify_on_resolution: bool,
}Fields§
§id: String§title: Option<String>§message: Option<String>§severity: Severity§remind_every_seconds: Option<u64>§notify_on_resolution: boolImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for OpenIssue
impl<'de> Deserialize<'de> for OpenIssue
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 OpenIssue
impl RefUnwindSafe for OpenIssue
impl Send for OpenIssue
impl Sync for OpenIssue
impl Unpin for OpenIssue
impl UnsafeUnpin for OpenIssue
impl UnwindSafe for OpenIssue
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