pub struct SignatureHelp {
pub signatures: Vec<SignatureInformation>,
pub active_signature: Option<u32>,
pub active_parameter: Option<u32>,
}Expand description
Represents signature help.
Fields§
§signatures: Vec<SignatureInformation>§active_signature: Option<u32>§active_parameter: Option<u32>Trait Implementations§
Source§impl Clone for SignatureHelp
impl Clone for SignatureHelp
Source§fn clone(&self) -> SignatureHelp
fn clone(&self) -> SignatureHelp
Returns a duplicate 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 SignatureHelp
impl Debug for SignatureHelp
Source§impl<'de> Deserialize<'de> for SignatureHelp
impl<'de> Deserialize<'de> for SignatureHelp
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 SignatureHelp
impl RefUnwindSafe for SignatureHelp
impl Send for SignatureHelp
impl Sync for SignatureHelp
impl Unpin for SignatureHelp
impl UnwindSafe for SignatureHelp
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