pub struct Command {Show 13 fields
pub send_updates_to_client: Option<bool>,
pub update_scheduled_task: Option<bool>,
pub completion_message: Option<Option<String>>,
pub requires_disk_access: Option<bool>,
pub is_exclusive: Option<bool>,
pub is_type_exclusive: Option<bool>,
pub is_long_running: Option<bool>,
pub name: Option<Option<String>>,
pub last_execution_time: Option<Option<String>>,
pub last_start_time: Option<Option<String>>,
pub trigger: Option<CommandTrigger>,
pub suppress_messages: Option<bool>,
pub client_user_agent: Option<Option<String>>,
}
Fields§
§send_updates_to_client: Option<bool>
§update_scheduled_task: Option<bool>
§completion_message: Option<Option<String>>
§requires_disk_access: Option<bool>
§is_exclusive: Option<bool>
§is_type_exclusive: Option<bool>
§is_long_running: Option<bool>
§name: Option<Option<String>>
§last_execution_time: Option<Option<String>>
§last_start_time: Option<Option<String>>
§trigger: Option<CommandTrigger>
§suppress_messages: Option<bool>
§client_user_agent: Option<Option<String>>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Command
impl<'de> Deserialize<'de> for Command
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 StructuralPartialEq for Command
Auto Trait Implementations§
impl Freeze for Command
impl RefUnwindSafe for Command
impl Send for Command
impl Sync for Command
impl Unpin for Command
impl UnwindSafe for Command
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