pub struct UndecodableWorkloop {
pub loop_id: String,
pub error: String,
}Expand description
A workloop row that was present but could not be decoded.
Fields§
§loop_id: StringKey under which the poisoned row is stored (the loop id’s text form).
error: StringDecode failure rendered for operator diagnosis.
Trait Implementations§
Source§impl Clone for UndecodableWorkloop
impl Clone for UndecodableWorkloop
Source§fn clone(&self) -> UndecodableWorkloop
fn clone(&self) -> UndecodableWorkloop
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 UndecodableWorkloop
impl Debug for UndecodableWorkloop
Source§impl<'de> Deserialize<'de> for UndecodableWorkloop
impl<'de> Deserialize<'de> for UndecodableWorkloop
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 Eq for UndecodableWorkloop
Source§impl PartialEq for UndecodableWorkloop
impl PartialEq for UndecodableWorkloop
Source§impl Serialize for UndecodableWorkloop
impl Serialize for UndecodableWorkloop
impl StructuralPartialEq for UndecodableWorkloop
Auto Trait Implementations§
impl Freeze for UndecodableWorkloop
impl RefUnwindSafe for UndecodableWorkloop
impl Send for UndecodableWorkloop
impl Sync for UndecodableWorkloop
impl Unpin for UndecodableWorkloop
impl UnsafeUnpin for UndecodableWorkloop
impl UnwindSafe for UndecodableWorkloop
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