pub struct FilesParams {
pub workspace_root: String,
pub subpath: Option<String>,
pub exclude_patterns: Vec<String>,
pub include_patterns: Vec<String>,
pub filter_pattern: Option<String>,
pub head: u32,
}Fields§
§workspace_root: String§subpath: Option<String>§exclude_patterns: Vec<String>§include_patterns: Vec<String>§filter_pattern: Option<String>§head: u32Trait Implementations§
Source§impl Clone for FilesParams
impl Clone for FilesParams
Source§fn clone(&self) -> FilesParams
fn clone(&self) -> FilesParams
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 FilesParams
impl Debug for FilesParams
Source§impl<'de> Deserialize<'de> for FilesParams
impl<'de> Deserialize<'de> for FilesParams
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 FilesParams
impl RefUnwindSafe for FilesParams
impl Send for FilesParams
impl Sync for FilesParams
impl Unpin for FilesParams
impl UnsafeUnpin for FilesParams
impl UnwindSafe for FilesParams
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