pub struct HooksListParams {
pub cwds: Vec<String>,
}Expand description
HooksListParams
JSON schema
{
"title": "HooksListParams",
"type": "object",
"properties": {
"cwds": {
"description": "When empty, defaults to the current session working directory.",
"type": "array",
"items": {
"type": "string"
}
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}Fields§
§cwds: Vec<String>When empty, defaults to the current session working directory.
Trait Implementations§
Source§impl Clone for HooksListParams
impl Clone for HooksListParams
Source§fn clone(&self) -> HooksListParams
fn clone(&self) -> HooksListParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HooksListParams
impl Debug for HooksListParams
Source§impl Default for HooksListParams
impl Default for HooksListParams
Source§impl<'de> Deserialize<'de> for HooksListParams
impl<'de> Deserialize<'de> for HooksListParams
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 HooksListParams
impl RefUnwindSafe for HooksListParams
impl Send for HooksListParams
impl Sync for HooksListParams
impl Unpin for HooksListParams
impl UnsafeUnpin for HooksListParams
impl UnwindSafe for HooksListParams
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