Struct rls_data::Impl
[−]
[src]
pub struct Impl {
pub id: u32,
pub kind: ImplKind,
pub span: SpanData,
pub value: String,
pub parent: Option<Id>,
pub children: Vec<Id>,
pub docs: String,
pub attributes: Vec<Attribute>,
}Fields
id: u32
kind: ImplKind
span: SpanData
value: String
parent: Option<Id>
children: Vec<Id>
docs: String
attributes: Vec<Attribute>
Trait Implementations
impl Debug for Impl[src]
impl Clone for Impl[src]
fn clone(&self) -> Impl
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Decodable for Impl[src]
fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<Impl, __D::Error>
Deserialize a value using a Decoder.