pub struct LegacyWafUpdateStatus {
pub completed_at: Option<String>,
pub created_at: Option<String>,
pub data: Option<String>,
pub message: Option<String>,
pub status: Option<String>,
pub updated_at: Option<String>,
}Fields§
§completed_at: Option<String>Date and time that job was completed.
created_at: Option<String>Date and time that job was created.
data: Option<String>This field can contain data passed to the background worker as well as output from the background job.
message: Option<String>Message with information about the status of the update.
status: Option<String>Current status of the update.
updated_at: Option<String>Date and time that job was last updated.
Implementations§
source§impl LegacyWafUpdateStatus
impl LegacyWafUpdateStatus
pub fn new() -> LegacyWafUpdateStatus
Trait Implementations§
source§impl Clone for LegacyWafUpdateStatus
impl Clone for LegacyWafUpdateStatus
source§fn clone(&self) -> LegacyWafUpdateStatus
fn clone(&self) -> LegacyWafUpdateStatus
Returns a copy 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 LegacyWafUpdateStatus
impl Debug for LegacyWafUpdateStatus
source§impl Default for LegacyWafUpdateStatus
impl Default for LegacyWafUpdateStatus
source§fn default() -> LegacyWafUpdateStatus
fn default() -> LegacyWafUpdateStatus
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LegacyWafUpdateStatus
impl<'de> Deserialize<'de> for LegacyWafUpdateStatus
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<LegacyWafUpdateStatus> for LegacyWafUpdateStatus
impl PartialEq<LegacyWafUpdateStatus> for LegacyWafUpdateStatus
source§fn eq(&self, other: &LegacyWafUpdateStatus) -> bool
fn eq(&self, other: &LegacyWafUpdateStatus) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for LegacyWafUpdateStatus
impl Serialize for LegacyWafUpdateStatus
impl StructuralPartialEq for LegacyWafUpdateStatus
Auto Trait Implementations§
impl RefUnwindSafe for LegacyWafUpdateStatus
impl Send for LegacyWafUpdateStatus
impl Sync for LegacyWafUpdateStatus
impl Unpin for LegacyWafUpdateStatus
impl UnwindSafe for LegacyWafUpdateStatus
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