pub struct RejectionRecord {
pub client_commit_id: String,
pub op_index: i32,
pub code: String,
pub message: String,
pub retryable: bool,
pub details: Option<RejectionDetails>,
pub operation: Option<CommitOperation>,
}Fields§
§client_commit_id: String§op_index: i32§code: String§message: String§retryable: bool§details: Option<RejectionDetails>§operation: Option<CommitOperation>Trait Implementations§
Source§impl Clone for RejectionRecord
impl Clone for RejectionRecord
Source§fn clone(&self) -> RejectionRecord
fn clone(&self) -> RejectionRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RejectionRecord
impl Debug for RejectionRecord
Source§impl<'de> Deserialize<'de> for RejectionRecord
impl<'de> Deserialize<'de> for RejectionRecord
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 RejectionRecord
impl PartialEq for RejectionRecord
Source§impl Serialize for RejectionRecord
impl Serialize for RejectionRecord
impl StructuralPartialEq for RejectionRecord
Auto Trait Implementations§
impl Freeze for RejectionRecord
impl RefUnwindSafe for RejectionRecord
impl Send for RejectionRecord
impl Sync for RejectionRecord
impl Unpin for RejectionRecord
impl UnsafeUnpin for RejectionRecord
impl UnwindSafe for RejectionRecord
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