pub struct WorkspaceRegistry { /* private fields */ }Implementations§
Source§impl WorkspaceRegistry
impl WorkspaceRegistry
pub fn local(options: LocalWorkspaceOptions) -> Self
pub fn local_with_cache( options: LocalWorkspaceOptions, cache: LocalResourceCache, ) -> Self
Source§impl WorkspaceRegistry
impl WorkspaceRegistry
pub fn new(ports: WorkspacePorts) -> Self
pub fn commands(&mut self) -> WorkspaceCommands<'_>
pub fn live_commands(&mut self) -> WorkspaceLiveCommands<'_>
pub fn queries(&self) -> WorkspaceQueries<'_>
pub fn events(&self) -> WorkspaceEvents<'_>
pub fn watch_roots(&self) -> Vec<WorkspaceWatchRoot>
Auto Trait Implementations§
impl !RefUnwindSafe for WorkspaceRegistry
impl !Sync for WorkspaceRegistry
impl !UnwindSafe for WorkspaceRegistry
impl Freeze for WorkspaceRegistry
impl Send for WorkspaceRegistry
impl Unpin for WorkspaceRegistry
impl UnsafeUnpin for WorkspaceRegistry
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more