pub struct PapertrailTraceParams {
pub work_dir: Option<String>,
pub key_id: String,
pub secret_key: String,
pub product: String,
pub version: String,
pub filenames: Vec<String>,
}Expand description
Parameters describing how to run a shell script.
Fields§
§work_dir: Option<String>Directory to run command in.
key_id: StringPapertrail key ID.
secret_key: StringPapertrail secret key.
product: StringPapertrail product name.
version: StringVersion of the product that traced files belong to.
filenames: Vec<String>List of filenames that should be traced by this command.
Trait Implementations§
Source§impl Clone for PapertrailTraceParams
impl Clone for PapertrailTraceParams
Source§fn clone(&self) -> PapertrailTraceParams
fn clone(&self) -> PapertrailTraceParams
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 PapertrailTraceParams
impl Debug for PapertrailTraceParams
Source§impl<'de> Deserialize<'de> for PapertrailTraceParams
impl<'de> Deserialize<'de> for PapertrailTraceParams
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
Auto Trait Implementations§
impl Freeze for PapertrailTraceParams
impl RefUnwindSafe for PapertrailTraceParams
impl Send for PapertrailTraceParams
impl Sync for PapertrailTraceParams
impl Unpin for PapertrailTraceParams
impl UnwindSafe for PapertrailTraceParams
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