pub enum PluginResponse {
VirtualBufferCreated {
request_id: u64,
buffer_id: BufferId,
split_id: Option<SplitId>,
},
TerminalCreated {
request_id: u64,
buffer_id: BufferId,
terminal_id: TerminalId,
split_id: Option<SplitId>,
},
LspRequest {
request_id: u64,
result: Result<Value, String>,
},
HighlightsComputed {
request_id: u64,
spans: Vec<TsHighlightSpan>,
},
BufferText {
request_id: u64,
text: Result<String, String>,
},
LineStartPosition {
request_id: u64,
position: Option<usize>,
},
LineEndPosition {
request_id: u64,
position: Option<usize>,
},
BufferLineCount {
request_id: u64,
count: Option<usize>,
},
CompositeBufferCreated {
request_id: u64,
buffer_id: BufferId,
},
SplitByLabel {
request_id: u64,
split_id: Option<SplitId>,
},
WatchPathRegistered {
request_id: u64,
result: Result<u64, String>,
},
}Expand description
Response from the editor for async plugin operations
Variants§
VirtualBufferCreated
Response to CreateVirtualBufferInSplit with the created buffer ID and split ID
TerminalCreated
Response to CreateTerminal with the created buffer, terminal, and split IDs
LspRequest
Response to a plugin-initiated LSP request
HighlightsComputed
Response to RequestHighlights
BufferText
Response to GetBufferText with the text content
LineStartPosition
Response to GetLineStartPosition with the byte offset
Fields
LineEndPosition
Response to GetLineEndPosition with the byte offset
Fields
BufferLineCount
Response to GetBufferLineCount with the total number of lines
CompositeBufferCreated
Response to CreateCompositeBuffer with the created buffer ID
SplitByLabel
Response to GetSplitByLabel with the found split ID (if any)
WatchPathRegistered
Response to WatchPath. handle is the editor’s stable
id for this watcher, used both as the cancellation token
for UnwatchPath and as the routing key in
path_changed event payloads. Err indicates the watcher
could not be installed (path missing, kernel limit, etc.).
Implementations§
Source§impl PluginResponse
impl PluginResponse
pub fn request_id(&self) -> u64
Trait Implementations§
Source§impl Clone for PluginResponse
impl Clone for PluginResponse
Source§fn clone(&self) -> PluginResponse
fn clone(&self) -> PluginResponse
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for PluginResponse
impl Debug for PluginResponse
Source§impl<'de> Deserialize<'de> for PluginResponse
impl<'de> Deserialize<'de> for PluginResponse
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>,
Source§impl Serialize for PluginResponse
impl Serialize for PluginResponse
Source§impl TS for PluginResponse
impl TS for PluginResponse
Source§type WithoutGenerics = PluginResponse
type WithoutGenerics = PluginResponse
WithoutGenerics should just be Self.
If the type does have generic parameters, then all generic parameters must be replaced with
a dummy type, e.g ts_rs::Dummy or (). The only requirement for these dummy types is that
EXPORT_TO must be None. Read moreSource§type OptionInnerType = PluginResponse
type OptionInnerType = PluginResponse
std::option::Option<T>, then this associated type is set to T.
All other implementations of TS should set this type to Self instead.Source§fn docs() -> Option<String>
fn docs() -> Option<String>
TS is derived, docs are
automatically read from your doc comments or #[doc = ".."] attributesSource§fn decl_concrete(cfg: &Config) -> String
fn decl_concrete(cfg: &Config) -> String
TS::decl().
If this type is not generic, then this function is equivalent to TS::decl().Source§fn decl(cfg: &Config) -> String
fn decl(cfg: &Config) -> String
type User = { user_id: number, ... }.
This function will panic if the type has no declaration. Read moreSource§fn inline(cfg: &Config) -> String
fn inline(cfg: &Config) -> String
{ user_id: number }.
This function will panic if the type cannot be inlined.Source§fn inline_flattened(cfg: &Config) -> String
fn inline_flattened(cfg: &Config) -> String
Source§fn visit_generics(v: &mut impl TypeVisitor)where
Self: 'static,
fn visit_generics(v: &mut impl TypeVisitor)where
Self: 'static,
Source§fn output_path() -> Option<PathBuf>
fn output_path() -> Option<PathBuf>
T should be exported, relative to the output directory.
The returned path does not include any base directory. Read moreSource§fn visit_dependencies(v: &mut impl TypeVisitor)where
Self: 'static,
fn visit_dependencies(v: &mut impl TypeVisitor)where
Self: 'static,
Source§fn dependencies(cfg: &Config) -> Vec<Dependency>where
Self: 'static,
fn dependencies(cfg: &Config) -> Vec<Dependency>where
Self: 'static,
Source§fn export(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
fn export(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
TS::export_all. Read moreSource§fn export_all(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
fn export_all(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
TS::export. Read more