pub struct SyncShellProfileInput {
pub context: ToolContext,
pub passthrough_args: Vec<String>,
}
Expand description
Input passed to the sync_shell_profile
function.
Fields§
§context: ToolContext
Current tool context.
passthrough_args: Vec<String>
Arguments passed after --
that was directly passed to the tool’s binary.
Trait Implementations§
Source§impl Clone for SyncShellProfileInput
impl Clone for SyncShellProfileInput
Source§fn clone(&self) -> SyncShellProfileInput
fn clone(&self) -> SyncShellProfileInput
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 SyncShellProfileInput
impl Debug for SyncShellProfileInput
Source§impl Default for SyncShellProfileInput
impl Default for SyncShellProfileInput
Source§fn default() -> SyncShellProfileInput
fn default() -> SyncShellProfileInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SyncShellProfileInput
impl<'de> Deserialize<'de> for SyncShellProfileInput
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 PartialEq for SyncShellProfileInput
impl PartialEq for SyncShellProfileInput
Source§impl Serialize for SyncShellProfileInput
impl Serialize for SyncShellProfileInput
impl StructuralPartialEq for SyncShellProfileInput
Auto Trait Implementations§
impl Freeze for SyncShellProfileInput
impl RefUnwindSafe for SyncShellProfileInput
impl Send for SyncShellProfileInput
impl Sync for SyncShellProfileInput
impl Unpin for SyncShellProfileInput
impl UnwindSafe for SyncShellProfileInput
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