pub struct AlertHistoryState {
pub app_id: String,
pub assigned_to: String,
pub comments: Vec<String>,
pub feedback: AlertFeedback,
pub status: AlertStatus,
pub updated_date_time: String,
pub user: String,
}
Fields§
§app_id: String
§assigned_to: String
§comments: Vec<String>
§feedback: AlertFeedback
§status: AlertStatus
§updated_date_time: String
§user: String
Trait Implementations§
Source§impl Clone for AlertHistoryState
impl Clone for AlertHistoryState
Source§fn clone(&self) -> AlertHistoryState
fn clone(&self) -> AlertHistoryState
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 AlertHistoryState
impl Debug for AlertHistoryState
Source§impl<'de> Deserialize<'de> for AlertHistoryState
impl<'de> Deserialize<'de> for AlertHistoryState
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 AlertHistoryState
impl PartialEq for AlertHistoryState
Source§impl Serialize for AlertHistoryState
impl Serialize for AlertHistoryState
impl Eq for AlertHistoryState
impl StructuralPartialEq for AlertHistoryState
Auto Trait Implementations§
impl Freeze for AlertHistoryState
impl RefUnwindSafe for AlertHistoryState
impl Send for AlertHistoryState
impl Sync for AlertHistoryState
impl Unpin for AlertHistoryState
impl UnwindSafe for AlertHistoryState
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