pub struct Task {Show 25 fields
pub id: u64,
pub design_id: u64,
pub design_title: String,
pub instance_id: u64,
pub model_id: String,
pub title: String,
pub cover: Url,
pub status: u64,
pub feedback_status: u64,
pub start_time: DateTime<Utc>,
pub end_time: DateTime<Utc>,
pub weight: f64,
pub length: u64,
pub cost_time: u64,
pub profile_id: u64,
pub plate_index: usize,
pub plate_name: String,
pub device_id: String,
pub ams_detail_mapping: Vec<AMSDetail>,
pub mode: String,
pub is_public_profile: bool,
pub is_printable: bool,
pub device_model: String,
pub device_name: String,
pub bed_type: String,
}Fields§
§id: u64§design_id: u64§design_title: String§instance_id: u64§model_id: String§title: String§cover: Url§status: u64§feedback_status: u64§start_time: DateTime<Utc>§end_time: DateTime<Utc>§weight: f64§length: u64§cost_time: u64§profile_id: u64§plate_index: usize§plate_name: String§device_id: String§ams_detail_mapping: Vec<AMSDetail>§mode: String§is_public_profile: bool§is_printable: bool§device_model: String§device_name: String§bed_type: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Task
impl<'de> Deserialize<'de> for Task
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
Auto Trait Implementations§
impl Freeze for Task
impl RefUnwindSafe for Task
impl Send for Task
impl Sync for Task
impl Unpin for Task
impl UnwindSafe for Task
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