pub struct PlannedResponse {
pub response_id: Uuid,
pub procedure: String,
pub procedure_type: ResponseProcedureType,
pub assertion_addressed: Assertion,
pub assigned_to: String,
pub target_date: NaiveDate,
pub status: ResponseStatus,
pub workpaper_ref: Option<Uuid>,
}Expand description
Planned audit response to identified risk.
Fields§
§response_id: UuidResponse ID
procedure: StringProcedure description
procedure_type: ResponseProcedureTypeProcedure type
assertion_addressed: AssertionAssertion addressed
assigned_to: StringAssigned to user ID
target_date: NaiveDateTarget completion date
status: ResponseStatusStatus
workpaper_ref: Option<Uuid>Workpaper reference when complete
Implementations§
Trait Implementations§
Source§impl Clone for PlannedResponse
impl Clone for PlannedResponse
Source§fn clone(&self) -> PlannedResponse
fn clone(&self) -> PlannedResponse
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 PlannedResponse
impl Debug for PlannedResponse
Source§impl<'de> Deserialize<'de> for PlannedResponse
impl<'de> Deserialize<'de> for PlannedResponse
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 PlannedResponse
impl RefUnwindSafe for PlannedResponse
impl Send for PlannedResponse
impl Sync for PlannedResponse
impl Unpin for PlannedResponse
impl UnwindSafe for PlannedResponse
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