pub struct ExploreSourceSection {
pub symbol: String,
pub kind: NodeKind,
pub start_line: i64,
pub end_line: i64,
pub reason: String,
pub code: String,
pub truncated: bool,
}Fields§
§symbol: String§kind: NodeKind§start_line: i64§end_line: i64§reason: String§code: String§truncated: boolTrait Implementations§
Source§impl Clone for ExploreSourceSection
impl Clone for ExploreSourceSection
Source§fn clone(&self) -> ExploreSourceSection
fn clone(&self) -> ExploreSourceSection
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 ExploreSourceSection
impl Debug for ExploreSourceSection
Auto Trait Implementations§
impl Freeze for ExploreSourceSection
impl RefUnwindSafe for ExploreSourceSection
impl Send for ExploreSourceSection
impl Sync for ExploreSourceSection
impl Unpin for ExploreSourceSection
impl UnsafeUnpin for ExploreSourceSection
impl UnwindSafe for ExploreSourceSection
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