pub struct SearchWorkspaceFilesParams {
pub q: String,
pub glob: Option<String>,
pub regex: Option<SearchWorkspaceFilesRegex>,
}Expand description
Query and header parameters for searchWorkspaceFiles.
Fields§
§q: StringSearch query
glob: Option<String>File glob pattern
regex: Option<SearchWorkspaceFilesRegex>Treat query as regex
Trait Implementations§
Source§impl Clone for SearchWorkspaceFilesParams
impl Clone for SearchWorkspaceFilesParams
Source§fn clone(&self) -> SearchWorkspaceFilesParams
fn clone(&self) -> SearchWorkspaceFilesParams
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 SearchWorkspaceFilesParams
impl Debug for SearchWorkspaceFilesParams
Source§impl Default for SearchWorkspaceFilesParams
impl Default for SearchWorkspaceFilesParams
Source§fn default() -> SearchWorkspaceFilesParams
fn default() -> SearchWorkspaceFilesParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SearchWorkspaceFilesParams
impl<'de> Deserialize<'de> for SearchWorkspaceFilesParams
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
impl StructuralPartialEq for SearchWorkspaceFilesParams
Auto Trait Implementations§
impl Freeze for SearchWorkspaceFilesParams
impl RefUnwindSafe for SearchWorkspaceFilesParams
impl Send for SearchWorkspaceFilesParams
impl Sync for SearchWorkspaceFilesParams
impl Unpin for SearchWorkspaceFilesParams
impl UnsafeUnpin for SearchWorkspaceFilesParams
impl UnwindSafe for SearchWorkspaceFilesParams
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