Struct croncat_manager::state::QueueItem
source · pub struct QueueItem {
pub task: TaskInfo,
pub agent_addr: Addr,
pub failures: Vec<(u8, String)>,
}Expand description
This struct will keep the task and who is doing it until the last action
Fields§
§task: TaskInfo§agent_addr: Addr§failures: Vec<(u8, String)>Storing any errors that happened to return
Trait Implementations§
source§impl<'de> Deserialize<'de> for QueueItem
impl<'de> Deserialize<'de> for QueueItem
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 JsonSchema for QueueItem
impl JsonSchema for QueueItem
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresource§impl PartialEq<QueueItem> for QueueItem
impl PartialEq<QueueItem> for QueueItem
impl StructuralPartialEq for QueueItem
Auto Trait Implementations§
impl RefUnwindSafe for QueueItem
impl Send for QueueItem
impl Sync for QueueItem
impl Unpin for QueueItem
impl UnwindSafe for QueueItem
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