pub struct DetectWorkspaceResult {
pub data: HashMap<WorkspaceFilePath, Vec<FilePath>>,
}
Expand description
Result of <adapter command> detect-workspace
Fields§
§data: HashMap<WorkspaceFilePath, Vec<FilePath>>
Trait Implementations§
Source§impl Clone for DetectWorkspaceResult
impl Clone for DetectWorkspaceResult
Source§fn clone(&self) -> DetectWorkspaceResult
fn clone(&self) -> DetectWorkspaceResult
Returns a copy 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 DetectWorkspaceResult
impl Debug for DetectWorkspaceResult
Source§impl<'de> Deserialize<'de> for DetectWorkspaceResult
impl<'de> Deserialize<'de> for DetectWorkspaceResult
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 DetectWorkspaceResult
impl RefUnwindSafe for DetectWorkspaceResult
impl Send for DetectWorkspaceResult
impl Sync for DetectWorkspaceResult
impl Unpin for DetectWorkspaceResult
impl UnwindSafe for DetectWorkspaceResult
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