#[non_exhaustive]pub struct CsrStatusResponse {
pub csr_id: Uuid,
pub csr_type: CsrType,
pub status: CsrStatus,
pub submitted_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub failure_reason: Option<String>,
}Expand description
CSR status response.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.csr_id: UuidCSR ID.
csr_type: CsrTypeCSR type.
status: CsrStatusCurrent status.
submitted_at: DateTime<Utc>Submission time.
updated_at: DateTime<Utc>Last update time.
failure_reason: Option<String>Rejection reason (when rejected).
Trait Implementations§
Source§impl Clone for CsrStatusResponse
impl Clone for CsrStatusResponse
Source§fn clone(&self) -> CsrStatusResponse
fn clone(&self) -> CsrStatusResponse
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 CsrStatusResponse
impl Debug for CsrStatusResponse
Source§impl<'de> Deserialize<'de> for CsrStatusResponse
impl<'de> Deserialize<'de> for CsrStatusResponse
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 CsrStatusResponse
impl RefUnwindSafe for CsrStatusResponse
impl Send for CsrStatusResponse
impl Sync for CsrStatusResponse
impl Unpin for CsrStatusResponse
impl UnsafeUnpin for CsrStatusResponse
impl UnwindSafe for CsrStatusResponse
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