pub struct GoFile { /* private fields */ }
Expand description
a way to hold a bunch of Go functions in a file
Implementations§
Trait Implementations§
Source§impl FileTrait for GoFile
impl FileTrait for GoFile
Source§fn get_language(&self) -> Language
fn get_language(&self) -> Language
returns the language of the file
Source§fn get_file_name(&self) -> String
fn get_file_name(&self) -> String
returns the name of the file
Source§fn get_functions(&self) -> Vec<Box<dyn FunctionTrait>>
fn get_functions(&self) -> Vec<Box<dyn FunctionTrait>>
returns the found functions in the file
Source§fn get_current(&self) -> Option<Box<dyn FunctionTrait>>
fn get_current(&self) -> Option<Box<dyn FunctionTrait>>
returns the current function that the file is on
Auto Trait Implementations§
impl Freeze for GoFile
impl RefUnwindSafe for GoFile
impl Send for GoFile
impl Sync for GoFile
impl Unpin for GoFile
impl UnwindSafe for GoFile
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more