pub struct ExtractedTypeRef {
pub from_symbol: String,
pub to_type: String,
pub line: usize,
}Expand description
A type reference found in the source (parameter types, return types, field types)
Fields§
§from_symbol: String§to_type: String§line: usizeTrait Implementations§
Source§impl Clone for ExtractedTypeRef
impl Clone for ExtractedTypeRef
Source§fn clone(&self) -> ExtractedTypeRef
fn clone(&self) -> ExtractedTypeRef
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 moreAuto Trait Implementations§
impl Freeze for ExtractedTypeRef
impl RefUnwindSafe for ExtractedTypeRef
impl Send for ExtractedTypeRef
impl Sync for ExtractedTypeRef
impl Unpin for ExtractedTypeRef
impl UnsafeUnpin for ExtractedTypeRef
impl UnwindSafe for ExtractedTypeRef
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