pub struct FnDefine {
pub export: Option<Span>,
pub ty: TypeDefine,
pub name: Ident,
pub params: Parameters,
pub codes: CodeBlock,
pub retty_span: Span,
pub sign_span: Span,
}
Fields§
§export: Option<Span>
§ty: TypeDefine
§name: Ident
§params: Parameters
§codes: CodeBlock
§retty_span: Span
§sign_span: Span
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FnDefine
impl RefUnwindSafe for FnDefine
impl Send for FnDefine
impl Sync for FnDefine
impl Unpin for FnDefine
impl UnwindSafe for FnDefine
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> 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