pub struct Update {
pub created_at: Option<f64>,
pub errors: Option<Vec<ErrorDetail>>,
pub id: Option<String>,
pub params: Option<Vec<UpdateParam>>,
pub status: Option<String>,
pub type_: Option<String>,
}Expand description
An object representing an asynchronous update.
Fields§
§created_at: Option<f64>The Unix epoch timestamp in seconds for when the update was created.
errors: Option<Vec<ErrorDetail>>Any errors associated with a Failed update.
id: Option<String>A UUID that is used to track the update.
params: Option<Vec<UpdateParam>>A key-value map that contains the parameters associated with the update.
status: Option<String>The current status of the update.
type_: Option<String>The type of the update.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Update
impl<'de> Deserialize<'de> for Update
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
impl StructuralPartialEq for Update
Auto Trait Implementations§
impl Freeze for Update
impl RefUnwindSafe for Update
impl Send for Update
impl Sync for Update
impl Unpin for Update
impl UnwindSafe for Update
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