pub struct SignatureLine {
pub qualified_name: String,
pub kind: String,
pub path: String,
pub line: usize,
pub signature: String,
}Fields§
§qualified_name: String§kind: String§path: String§line: usize§signature: StringTrait Implementations§
Source§impl Clone for SignatureLine
impl Clone for SignatureLine
Source§fn clone(&self) -> SignatureLine
fn clone(&self) -> SignatureLine
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SignatureLine
impl Debug for SignatureLine
Source§impl<'de> Deserialize<'de> for SignatureLine
impl<'de> Deserialize<'de> for SignatureLine
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 SignatureLine
impl RefUnwindSafe for SignatureLine
impl Send for SignatureLine
impl Sync for SignatureLine
impl Unpin for SignatureLine
impl UnsafeUnpin for SignatureLine
impl UnwindSafe for SignatureLine
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