pub struct TimelineAttempt {
pub attempt: Option<i32>,
pub identifier: Option<String>,
pub record_id: Option<String>,
pub timeline_id: Option<String>,
}Expand description
An attempt to update a TimelineRecord.
Fields§
§attempt: Option<i32>The attempt of the record.
identifier: Option<String>The unique identifier for the record.
record_id: Option<String>The record identifier located within the specified timeline.
timeline_id: Option<String>The timeline identifier which owns the record representing this attempt.
Implementations§
Trait Implementations§
source§impl Clone for TimelineAttempt
impl Clone for TimelineAttempt
source§fn clone(&self) -> TimelineAttempt
fn clone(&self) -> TimelineAttempt
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 TimelineAttempt
impl Debug for TimelineAttempt
source§impl Default for TimelineAttempt
impl Default for TimelineAttempt
source§fn default() -> TimelineAttempt
fn default() -> TimelineAttempt
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TimelineAttempt
impl<'de> Deserialize<'de> for TimelineAttempt
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 for TimelineAttempt
impl PartialEq for TimelineAttempt
source§fn eq(&self, other: &TimelineAttempt) -> bool
fn eq(&self, other: &TimelineAttempt) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for TimelineAttempt
impl Serialize for TimelineAttempt
impl StructuralPartialEq for TimelineAttempt
Auto Trait Implementations§
impl Freeze for TimelineAttempt
impl RefUnwindSafe for TimelineAttempt
impl Send for TimelineAttempt
impl Sync for TimelineAttempt
impl Unpin for TimelineAttempt
impl UnwindSafe for TimelineAttempt
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