pub struct EamTaskCreateResult {
pub name: String,
pub task_type: String,
pub schedule_mode: String,
pub definition: Value,
}Expand description
ign eam task new output model — all keys always.
Fields§
§name: StringThe created definition’s name.
task_type: StringThe profile.type token.
schedule_mode: StringThe profile.scheduleMode token.
definition: ValueThe composed definition body that rode the array POST (verbatim — the agent’s read-back of what was created).
Trait Implementations§
Source§impl Debug for EamTaskCreateResult
impl Debug for EamTaskCreateResult
Auto Trait Implementations§
impl Freeze for EamTaskCreateResult
impl RefUnwindSafe for EamTaskCreateResult
impl Send for EamTaskCreateResult
impl Sync for EamTaskCreateResult
impl Unpin for EamTaskCreateResult
impl UnsafeUnpin for EamTaskCreateResult
impl UnwindSafe for EamTaskCreateResult
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