pub struct EamTaskSummary {
pub name: String,
pub task_type: Option<String>,
pub schedule_mode: Option<String>,
pub current_state: Option<String>,
}Expand description
One task-definition summary row (the agent-stable shape).
Fields§
§name: StringDefinition name.
task_type: Option<String>config.profile.type (eam_backup, …) — null when the
record’s config carries no profile type.
schedule_mode: Option<String>config.profile.scheduleMode (OnDemand, …) — null when
absent.
current_state: Option<String>scheduledTaskState.currentState — null when the list shape
carries no state (find answers do).
Trait Implementations§
Source§impl Debug for EamTaskSummary
impl Debug for EamTaskSummary
Auto Trait Implementations§
impl Freeze for EamTaskSummary
impl RefUnwindSafe for EamTaskSummary
impl Send for EamTaskSummary
impl Sync for EamTaskSummary
impl Unpin for EamTaskSummary
impl UnsafeUnpin for EamTaskSummary
impl UnwindSafe for EamTaskSummary
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