pub struct CodeLens {
pub command: Option<Command>,
pub data: Option<Value>,
pub range: Range,
}Expand description
A code lens represents a command that should be shown along with source text, like the number of references, a way to run tests, etc.
A code lens is unresolved when no command is associated to it. For performance reasons the creation of a code lens and resolving should be done in two stages.
Fields§
§command: Option<Command>The command this code lens represents.
data: Option<Value>A data entry field that is preserved on a code lens item between a code lens and a code lens resolve request.
range: RangeThe range in which this code lens is valid. Should only span a single line.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CodeLens
impl<'de> Deserialize<'de> for CodeLens
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
Source§impl FromReq for CodeLens
impl FromReq for CodeLens
const METHOD: &'static str = "codeLens/resolve"
type Ret = CodeLens
Source§fn from_req(req: RequestMessage) -> OneOf<(ReqId, Self), RequestMessage>
fn from_req(req: RequestMessage) -> OneOf<(ReqId, Self), RequestMessage>
perform message cast from raw request message
if method do not match, return
OneOf::Other(request)Source§fn can_cast(req: &RequestMessage) -> bool
fn can_cast(req: &RequestMessage) -> bool
helper function to test method match or not
impl StructuralPartialEq for CodeLens
Auto Trait Implementations§
impl Freeze for CodeLens
impl RefUnwindSafe for CodeLens
impl Send for CodeLens
impl Sync for CodeLens
impl Unpin for CodeLens
impl UnwindSafe for CodeLens
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