pub struct PendingDecision {
pub id: i64,
pub source: String,
pub resource: String,
pub tier: String,
pub action: String,
pub summary: String,
pub created_at: String,
pub resolved_at: Option<String>,
pub resolution: Option<String>,
}Expand description
A pending decision for a source item needing user review.
Fields§
§id: i64§source: String§resource: String§tier: String§action: String§summary: String§created_at: String§resolved_at: Option<String>§resolution: Option<String>Trait Implementations§
Source§impl Clone for PendingDecision
impl Clone for PendingDecision
Source§fn clone(&self) -> PendingDecision
fn clone(&self) -> PendingDecision
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 PendingDecision
impl Debug for PendingDecision
Auto Trait Implementations§
impl Freeze for PendingDecision
impl RefUnwindSafe for PendingDecision
impl Send for PendingDecision
impl Sync for PendingDecision
impl Unpin for PendingDecision
impl UnsafeUnpin for PendingDecision
impl UnwindSafe for PendingDecision
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