pub struct WorkloopListing {
pub workloops: Vec<WorkloopRecord>,
pub undecodable: Vec<UndecodableWorkloop>,
}Expand description
Complete workloop listing, including poisoned-row visibility.
Fields§
§workloops: Vec<WorkloopRecord>Successfully decoded records, ordered by loop id text.
undecodable: Vec<UndecodableWorkloop>Present rows that could not be decoded, ordered by loop id text.
Trait Implementations§
Source§impl Clone for WorkloopListing
impl Clone for WorkloopListing
Source§fn clone(&self) -> WorkloopListing
fn clone(&self) -> WorkloopListing
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 WorkloopListing
impl Debug for WorkloopListing
Source§impl Default for WorkloopListing
impl Default for WorkloopListing
Source§fn default() -> WorkloopListing
fn default() -> WorkloopListing
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkloopListing
impl<'de> Deserialize<'de> for WorkloopListing
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 WorkloopListing
Source§impl PartialEq for WorkloopListing
impl PartialEq for WorkloopListing
Source§impl Serialize for WorkloopListing
impl Serialize for WorkloopListing
impl StructuralPartialEq for WorkloopListing
Auto Trait Implementations§
impl Freeze for WorkloopListing
impl RefUnwindSafe for WorkloopListing
impl Send for WorkloopListing
impl Sync for WorkloopListing
impl Unpin for WorkloopListing
impl UnsafeUnpin for WorkloopListing
impl UnwindSafe for WorkloopListing
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