pub struct AugmentedInfo {
pub command: Option<String>,
}Expand description
This field contains the augmented information of the request. Requires augmented administrative access to be enabled.
This type is not used in any activity, and only used as part of another schema.
Fields§
§command: Option<String>For command-line tools, the full command-line exactly as entered by the actor without adding any additional characters (such as quotation marks).
Trait Implementations§
Source§impl Clone for AugmentedInfo
impl Clone for AugmentedInfo
Source§fn clone(&self) -> AugmentedInfo
fn clone(&self) -> AugmentedInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AugmentedInfo
impl Debug for AugmentedInfo
Source§impl Default for AugmentedInfo
impl Default for AugmentedInfo
Source§fn default() -> AugmentedInfo
fn default() -> AugmentedInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AugmentedInfo
impl<'de> Deserialize<'de> for AugmentedInfo
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 Serialize for AugmentedInfo
impl Serialize for AugmentedInfo
impl Part for AugmentedInfo
Auto Trait Implementations§
impl Freeze for AugmentedInfo
impl RefUnwindSafe for AugmentedInfo
impl Send for AugmentedInfo
impl Sync for AugmentedInfo
impl Unpin for AugmentedInfo
impl UnwindSafe for AugmentedInfo
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